net.java.joglutils.msg.nodes
Class Transform

java.lang.Object
  extended by net.java.joglutils.msg.nodes.Node
      extended by net.java.joglutils.msg.nodes.Transform

public class Transform
extends Node

Represents a generalized 4x4 matrix transformation.


Constructor Summary
Transform()
           
 
Method Summary
 void doAction(Action action)
          Performs the "typical" operation for this node when an action is applied to it.
 Mat4f getTransform()
          Returns the transformation in thie node.
 void setTransform(Mat4f transform)
          Sets the transformation in thie node.
 
Methods inherited from class net.java.joglutils.msg.nodes.Node
rayPick, render
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Transform

public Transform()
Method Detail

setTransform

public void setTransform(Mat4f transform)
Sets the transformation in thie node.


getTransform

public Mat4f getTransform()
Returns the transformation in thie node.


doAction

public void doAction(Action action)
Description copied from class: Node
Performs the "typical" operation for this node when an action is applied to it. The default implementation does nothing.

Overrides:
doAction in class Node