Uses of Interface
cz.cuni.jagrlib.SceneNode

Packages that use SceneNode
cz.cuni.jagrlib Core JaGrLib package. 
cz.cuni.jagrlib.iface Various interfaces for connecting of JaGrLib modules. 
cz.cuni.jagrlib.piece Public modules (building blocks of JaGrLib compositions). 
 

Uses of SceneNode in cz.cuni.jagrlib
 

Classes in cz.cuni.jagrlib that implement SceneNode
 class CSGCommonNode
          Common code for CSG nodes.
 class CSGLeaf
          Leaf node (holding elementary solid) of CSG scene representation.
 class CSGNode
          Inner node of CSG scene representation.
 class DefaultSceneNode
          Default implementation of scene node.
 

Fields in cz.cuni.jagrlib declared as SceneNode
 SceneNode CSGNode.Child.node
          Reference to the child node.
protected  SceneNode CSGCommonNode.parent
          Handle of node's parent (or null for root-node).
 

Methods in cz.cuni.jagrlib that return SceneNode
 SceneNode CSGNode.getChild(int i)
          Returns the given child node.
 SceneNode DefaultSceneNode.getChild(int i)
          Returns the given child node.
 SceneNode SceneNode.getChild(int i)
          Returns the given child node.
 SceneNode CSGCommonNode.getParent()
          Returns the parent of this node.
 SceneNode DefaultSceneNode.getParent()
          Returns the parent of this node.
 SceneNode SceneNode.getParent()
          Returns the parent of this SceneNode.
 

Methods in cz.cuni.jagrlib with parameters of type SceneNode
 int CSGNode.insertChild(SceneNode child, TrMatrix m, TrMatrix mInv)
          Inserts a new child node.
 int DefaultSceneNode.insertChild(SceneNode child, TrMatrix m, TrMatrix mInv)
          Inserts a new child node.
 int SceneNode.insertChild(SceneNode child, TrMatrix m, TrMatrix mInv)
          Inserts a new child node.
 void CSGCommonNode.setParent(SceneNode par)
          Sets handle to the parent node.
 void DefaultSceneNode.setParent(SceneNode par)
          Sets handle to the parent node.
 void SceneNode.setParent(SceneNode par)
          Sets handle to the parent node.
 

Constructors in cz.cuni.jagrlib with parameters of type SceneNode
CSGNode.Child(SceneNode _node, TrMatrix _m, TrMatrix _mInv)
           
 

Uses of SceneNode in cz.cuni.jagrlib.iface
 

Methods in cz.cuni.jagrlib.iface with parameters of type SceneNode
 void RTScene.setRoot(SceneNode root)
          Sets root node (assumes hierarchical scene representation based on SceneNode).
 

Uses of SceneNode in cz.cuni.jagrlib.piece
 

Fields in cz.cuni.jagrlib.piece declared as SceneNode
protected  SceneNode StaticCSGScene.root
          Root node of the CSG-tree.
 

Methods in cz.cuni.jagrlib.piece with parameters of type SceneNode
 void StaticCSGScene.setRoot(SceneNode root)
          Sets root node (assumes hierarchical scene representation based on SceneNode).