The RMP Motion Controller APIs
ModelAxisMapping

Data for adding joint or free-axis mappings when building a kinematic model. More...

Functions

 ModelAxisMapping (int jointIndex)
 Constructor that sets the FointIndex and uses defaults for the rest of the data members.
 
 ModelAxisMapping (int jointIndex, double scaling, double offset, const char *const label)
 Constructor that sets all data members in the struct.
 

Attributes

char ExpectedLabel [ExpectedLabelBufferSize]
 The label the joint is expected to have. The maximum number of characters the label can have is MAX_LABEL_SIZE. (The buffer has an additional space to allow strings to be null-terminated)
 
int JointIndex
 The index of the robot's joint to map (within an array of joint positions). Often this index will refer to the index of the axis within a MultiAxis object.
 
double Offset
 The offset value that will be added to the scaled joint position.
 
double Scaling
 The scaling value that the joint position will be multiplied by.
 

Static Attributes

static constexpr int MaxLabelSize = 16
 The maximum size of a joint label and the size of the ExpectedLabel buffer.
 

Description

Examples
GcodeMotion.cs.

Definition at line 673 of file cartesianrobot.h.