glumb/mrc

Better explanation of Geometry array

TadyTheFish opened this issue · 4 comments

Can you please better explain what do the values in the geometry array present.

float geometry[5][3] = { { 4.2, 0, 8.5 }, { 0, 0, 9.5 }, { 1, 0, 1.85 }, { 14.8, 0, 0 }, { 0, 0, -2.2 } };
Thank you!

glumb commented

Those are the coordinates of the links V0-V5 according to the schematic below in the base coordinate system (bottom left).

float geometry[5][3] = { 
 { 4.2, 0, 8.5 }, //V0 {x,y,z}
 { 0, 0, 9.5 }, //V1
 { 1, 0, 1.85 }, //V2
 { 14.8, 0, 0 }, //V3
 { 0, 0, -2.2 } //V4
};

bc6a01d0-3967-11e7-83c9-d572eef1bd12

glumb commented

I would kindly ask you to read my answer on GitHub. I editet it 5s after initial post. Maybe you did not receive the updated version.

Thank you! Got it working:)