File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -522,7 +522,7 @@ def finish(self):
522
522
# @param vector the vector pointing to the origin of the joint.
523
523
# @return the SDF pose node
524
524
def sdfPoseVector (self , vector ):
525
- pose = ET .Element ("pose" , frame = "" )
525
+ pose = ET .Element ("pose" ) # , frame="")
526
526
# convert from cm (Fusion 360) to m (SI)
527
527
x = 0.01 * vector .x
528
528
y = 0.01 * vector .y
@@ -539,7 +539,7 @@ def sdfPoseVector(self, vector):
539
539
# @param matrix the transformation matrix of the link
540
540
# @return the SDF pose node
541
541
def sdfPoseMatrix (self , matrix ):
542
- pose = ET .Element ("pose" , frame = "" )
542
+ pose = ET .Element ("pose" ) # , frame="")
543
543
# convert from cm (Fusion 360) to m (SI)
544
544
trans = matrix .translation
545
545
x = 0.01 * trans .x
You can’t perform that action at this time.
0 commit comments