mirror of
https://github.com/godotengine/godot.git
synced 2024-12-14 07:04:05 +00:00
Remove ChainTip copy constructor
This commit is contained in:
parent
9df3d06d1f
commit
79952c5435
@ -84,10 +84,6 @@ class FabrikInverseKinematic {
|
|||||||
ChainTip(ChainItem *p_chain_item, const EndEffector *p_end_effector) :
|
ChainTip(ChainItem *p_chain_item, const EndEffector *p_end_effector) :
|
||||||
chain_item(p_chain_item),
|
chain_item(p_chain_item),
|
||||||
end_effector(p_end_effector) {}
|
end_effector(p_end_effector) {}
|
||||||
|
|
||||||
ChainTip(const ChainTip &p_other_ct) :
|
|
||||||
chain_item(p_other_ct.chain_item),
|
|
||||||
end_effector(p_other_ct.end_effector) {}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct Chain {
|
struct Chain {
|
||||||
|
Loading…
Reference in New Issue
Block a user