org.metacsp.spatial.geometry.Pose Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of meta-csp-framework Show documentation
Show all versions of meta-csp-framework Show documentation
A Java API for Meta-CSP based reasoning
package org.metacsp.spatial.geometry;
public class Pose {
Position position;
Quaternion orientation;
public Position getPosition() {
return position;
}
public Quaternion getOrientation() {
return orientation;
}
public void setPosition(Position position) {
this.position = position;
}
public void setOrientation(Quaternion orientation) {
this.orientation = orientation;
}
}