This value is an N x N matrix (where N is the number of dimensions in the path motion) that scales and rotates the axes used in the path motion. This is useful when using two axes with different resolutions for each axis.
For two axes with different resolution:
Set conversion[0][0] to (desired x resolution / actual x resolution)
Set conversion [1][1] to (desired y resolution / actual y resolution)
Set conversion[0][1] and conversion[1][0] = 0
For a coordinate rotation, where alpha is the rotation of the coordinate system:
Set conversion[0][0] and conversion [1][1] = cos(alpha)
Set conversion[0][1] = sin(alpha)
Set conversion[1][0] = -sin(alpha) |