Aggiunte e modifiche per lower_body

This commit is contained in:
2026-06-18 18:01:09 +02:00
parent 9189246361
commit 842f384bb8
8 changed files with 56 additions and 11 deletions
@@ -17,4 +17,15 @@ class CollectionInterface{
};
#endif
#endif
inline collection operator+(collection c1, collection c2){
collection res;
for (PieceInterface* i : c1.pieces){
res.pieces.push_back(i);
}
for (JointInterface* i : c1.joints){
res.joints.push_back(i);
}
return res;
}