Installation manual
Chapter 7 Library Reference
7-
2
<Header file for Visual C++ (Windows)>
・Data types with specific significance:
typedef float MATRIX[3][4];
3×4 matrix indicating the tip position/orientation, etc.
nx ox ax px
ny oy ay py
nz oz az pz
typedef float NOAMAT[3][3]; 3×3 matrix indicating the tip orientation
,
nx ox ax
ny oy ay
nz oz az
typedef float VECTOR[3]; Tip position vector, etc.
( px,py,pz )
・Data types when in processing end:
#define WM_WAIT 0 Returns from function after processing ends.
#define WM_NOWAIT 1 Returns from function before processing ends.