net.java.joglutils.msg.nodes
Class TextureCoordinate2

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

public class TextureCoordinate2
extends Node

Represents a set of 2-dimensional texture coordinates which can be used to texture geometric shapes.


Constructor Summary
TextureCoordinate2()
           
 
Method Summary
 void doAction(Action action)
          Performs the "typical" operation for this node when an action is applied to it.
 Vec2fCollection getData()
          Returns the texture coordinate data in this node.
 void setData(Vec2fCollection data)
          Sets the texture coordinate data in this 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

TextureCoordinate2

public TextureCoordinate2()
Method Detail

setData

public void setData(Vec2fCollection data)
Sets the texture coordinate data in this node.


getData

public Vec2fCollection getData()
Returns the texture coordinate data in this 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