You're reading the documentation for an older, but still supported version
(GL013300).
For information on the latest version, please have a look at GL013301.
For information on the latest version, please have a look at GL013301.
SAFETY_ZONE_SHAPE_CUBOID
This structure defines the cuboid-shaped safety zone, used for representing rectangular 3D restricted regions in the robot workspace. It is described by minimum and maximum limits along each axis.
BYTE# |
Field Name |
Data Type |
Value |
Remarks |
|---|---|---|---|---|
0 |
|
|
Minimum X-axis limit |
|
4 |
|
|
Minimum Y-axis limit |
|
8 |
|
|
Minimum Z-axis limit |
|
12 |
|
|
Maximum X-axis limit |
|
16 |
|
|
Maximum Y-axis limit |
|
20 |
|
|
Maximum Z-axis limit |
Total size: 24 bytes
Defined in: DRFS.h
typedef struct _SAFETY_ZONE_SHAPE_CUBOID
{
/* minimum limits (X, Y, Z) */
float _fXLoLimit;
float _fYLoLimit;
float _fZLoLimit;
/* maximum limits (X, Y, Z) */
float _fXUpLimit;
float _fYUpLimit;
float _fZUpLimit;
} SAFETY_ZONE_SHAPE_CUBOID, *LPSAFETY_ZONE_SHAPE_CUBOID;