Home | History | Annotate | Download | only in math

Lines Matching defs:Transform

45 public final class Transform implements Savable, Cloneable, java.io.Serializable {
49 public static final Transform IDENTITY = new Transform();
55 public Transform(Vector3f translation, Quaternion rot){
60 public Transform(Vector3f translation, Quaternion rot, Vector3f scale){
65 public Transform(Vector3f translation){
69 public Transform(Quaternion rot){
73 public Transform(){
82 public Transform setRotation(Quaternion rot) {
92 public Transform setTranslation(Vector3f trans) {
110 public Transform setScale(Vector3f scale) {
120 public Transform setScale(float scale) {
179 * @param t1 The begining transform.
180 * @param t2 The ending transform.
183 public void interpolateTransforms(Transform t1, Transform t2, float delta) {
194 public Transform combineWithParent(Transform parent) {
221 public Transform setTranslation(float x,float y, float z) {
233 public Transform setScale(float x, float y, float z) {
284 public Transform set(Transform matrixQuat) {
307 public Transform clone() {
309 Transform tq = (Transform) super.clone();