07-30-2019, 07:07 PM
Hi,
I could get this to work with Python, but as far as I understood, in C++ something is wrong.
Look at AddShape API:
However, Mat is only a 4x4 matrix class!
How can I use AddShape in C++? What type of value do I need to pass in?
I could get this to work with Python, but as far as I understood, in C++ something is wrong.
Look at AddShape API:
Quote: Item RoboDK::AddShape(Mat*trianglePoints,Item*addTo,boolshapeOverride,Color*color)trianglePoints= List of vertices grouped by triangles (3xN or 6xN matrix, N must be multiple of 3 because vertices must be stacked by groups of 3)
However, Mat is only a 4x4 matrix class!
Quote: classROBODKMat:publicQMatrix4x4
How can I use AddShape in C++? What type of value do I need to pass in?