The tMatrix2D struct represents a variable size 2d Matrix. Use the Matrix2D_... functions to oeprate on this variable sized matrix. This type of data can be used to get/set a program as a list. This is also useful for backwards compatibility functions related to RoKiSim. More...
#include <robodk_api.h>
Public Attributes | |
double * | data |
Pointer to the data. | |
int * | size |
Pointer to the size array. | |
int | allocatedSize |
Allocated size. | |
int | numDimensions |
Number of dimensions (usually 2) | |
bool | canFreeData |
The tMatrix2D struct represents a variable size 2d Matrix. Use the Matrix2D_... functions to oeprate on this variable sized matrix. This type of data can be used to get/set a program as a list. This is also useful for backwards compatibility functions related to RoKiSim.
Definition at line 362 of file robodk_api.h.
int allocatedSize |
Allocated size.
Definition at line 370 of file robodk_api.h.
bool canFreeData |
Definition at line 375 of file robodk_api.h.
double* data |
Pointer to the data.
Definition at line 364 of file robodk_api.h.
int numDimensions |
Number of dimensions (usually 2)
Definition at line 373 of file robodk_api.h.
int* size |
Pointer to the size array.
Definition at line 367 of file robodk_api.h.