Replies: 2 comments
-
The field is called length, docs need updating. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Ah, I see. Thank you. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This is OK:
visual_shape_id = pb.createVisualShape(pb.GEOM_CYLINDER, radius,[1,1,1],height,rgbaColor=[1,1,1,1], specularColor=[0.4,.4,0])
But this fails, saying "height" is not a valid keyword argument even though it's an optional argument.
visual_shape_id = pb.createVisualShape(pb.GEOM_CYLINDER, radius=0.5,height=0.5, rgbaColor=[1,1,1,1], specularColor=[0.4,.4,0])
Beta Was this translation helpful? Give feedback.
All reactions