@ProviderType
public interface PoseFactory
This interface provides methods for creating poses in Cartesian space (relative to a reference coordinate system).
A pose can, e.g. describe the position of the robot tool (e.g. w.r.t. to robot base) or the TCP offset (relative to the center of the tool output flange).Modifier and Type | Method and Description |
---|---|
Pose |
createPose(double x,
double y,
double z,
double rx,
double ry,
double rz,
Length.Unit lengthUnit,
Angle.Unit angleUnit)
Creates an object representing a pose with the specified Cartesian position and orientation (rotation)
|
Pose |
createPose(Position position,
Rotation rotation)
Creates an object representing a pose with the specified Cartesian position and orientation (rotation).
|
Pose createPose(Position position, Rotation rotation)
Creates an object representing a pose with the specified Cartesian position and orientation (rotation).
UsePositionFactory.createPosition(double, double, double, Length.Unit)
and
RotationFactory.createRotation(double, double, double, Angle.Unit)
to create the position and rotation
parameters, respectively.position
- The Cartesian position of the pose.rotation
- The rotation vector specifying the Cartesian orientation of the posePose createPose(double x, double y, double z, double rx, double ry, double rz, Length.Unit lengthUnit, Angle.Unit angleUnit)
x
- X coordinate of the Cartesian position.y
- Y coordinate of the Cartesian position.z
- Z coordinate of the Cartesian position.rx
- Rx parameter of the rotation vector specifying the Cartesian orientation.ry
- Ry parameter of the rotation vector specifying the Cartesian orientation.rz
- Rz parameter of the rotation vector specifying the Cartesian orientation.lengthUnit
- The length unit for the specified coordinates of the Cartesian position.angleUnit
- The angular unit for the specified parameters of the Cartesian rotation.Copyright © 2021. All rights reserved.