Closed theunkn0wn1 closed 3 years ago
It seems that the visualization doesn't work with very big parts relative to whatever coordinate system tinyik
uses.
If i scale the model down by 1E2 (expressing the measurements in meters) I do get a visible output.
What are the units of measure that tinyik
uses?
@theunkn0wn1 The specification of tinyik's visualizer follows open3d. The cause of this issue was that the thickness of the links and joints were hard-coded so that they were too thin relative to the length of the actuators they were created for, and could not be displayed properly.
I modified it so that you can explicitly specify the thickness of the links when visualizing. I've released a new version 2.2.0, so please try using it.
tinyik.visualize(arm, radius=15.)
Using
tinyik
off of Git, commit e34d514e214818ab3f54cc8c7bb29bb144c3e54dI am trying to implement a model of the robot arm used in one of my projects,
before I can evaluate how well the IK provided by this library works the first step is to ensure I can represent the arm in a form that this library can understand.
I modified the example in the readme with the dimensions of my arm, though the visualizer seems to draw a blank.