Uses of Class
anl.aida.viz3d.VSpatial

Packages that use VSpatial
anl.aida.plot   
anl.aida.viz3d   
 

Uses of VSpatial in anl.aida.plot
 

Fields in anl.aida.plot declared as VSpatial
private  VSpatial InfoDragger.node
           
 

Fields in anl.aida.plot with type parameters of type VSpatial
private  java.util.List<VSpatial> NetworkPlotCreator.emptyNodes
           
 

Methods in anl.aida.plot with parameters of type VSpatial
private  void InfoDragger.colorEdge(VSpatial edge)
           
private  void InfoDragger.colorNode(VSpatial node)
           
 void NetworkPlotCreator.updateLayout(VSpatial spatial, javax.vecmath.Point3f localTrans)
          Updates the location of the specified spatial to the local transform.
 void TSGraphPlotCanvasListener.vSpatialMoved(VSpatial spatial, javax.vecmath.Point3f localTrans)
           
 void Canvas3D.vSpatialMoved(VSpatial spatial, javax.vecmath.Point3f localTrans)
          Called when a VSpatial has been moved using the mouse.
 

Uses of VSpatial in anl.aida.viz3d
 

Subclasses of VSpatial in anl.aida.viz3d
 class CompositeGeometry
           
 class LabeledShape
           
 class StackDrawable2
          A VSpatial that is drawn by a Stack.
 class StackItem2
          An item in a StackDisplay.
 class StackRenderer2
          Renders items in a stack.
 class TSGraphVNode
          A VNode that contains a time series graph.
 class VGeometry
          Abstract base class for the VSpatials that contain geometry.
 class VLabel
          VNode that draws a label.This renders at 0, 0, 0 and so a translation should be used to place it.
 class VLine
          VSpatial that draws a line between two points.
 class VNode
          VSpatial with children.
 class VShapeTF
          Encapsulates a vertex array in a VNode.
 class VShapeTS
          Encapsulates a vertex array in a VSpatial.
 

Fields in anl.aida.viz3d declared as VSpatial
private  VSpatial LabeledShape.node
           
private  VSpatial InfoDragger.node
           
protected  VSpatial VSpatial.parent
           
 

Fields in anl.aida.viz3d with type parameters of type VSpatial
protected  java.util.List<VSpatial> VNode.children
           
private  java.util.List<VSpatial> NetworkVizCreator.emptyNodes
           
private  java.util.List<VSpatial> DefaultAccumulator.items
           
(package private)  java.util.Iterator<VSpatial> SelectionManager.Iter.iter
           
private  java.util.Set<VSpatial> SelectionManager.selectedNodes
           
 

Methods in anl.aida.viz3d that return VSpatial
 VSpatial VShapeFactory.createCircle(float radius, int slices)
           
 VSpatial VShapeFactory.createCylinder(float radius, float height, int slices)
           
 VSpatial VShapeFactory.createDisk(float radius, float height, int slices)
           
 VSpatial VNode.get(int childIndex)
           
 VSpatial VSpatial.getParent()
          Gets the parent of this Vspatial.
 

Methods in anl.aida.viz3d that return types with arguments of type VSpatial
 java.lang.Iterable<VSpatial> VNode.children()
           
 java.lang.Iterable<VSpatial> DefaultAccumulator.items()
           
 java.lang.Iterable<VSpatial> Accumulator.items()
           
 

Methods in anl.aida.viz3d with parameters of type VSpatial
 void DefaultAccumulator.add(VSpatial item)
           
 void Accumulator.add(VSpatial node)
          Adds the specified VNode to this Accumulator.
 void VNode.addChild(VSpatial child)
           
 void VNode.addChildren(VSpatial... items)
           
 void SelectionManager.addSelectedItem(VSpatial node)
           
private  void InfoDragger.colorEdge(VSpatial edge)
           
private  void InfoDragger.colorNode(VSpatial node)
           
static MaterialAppearence NodeUtils.getAppearance(VSpatial node)
           
static java.awt.Color NodeUtils.getColor(VSpatial edge)
           
static anl.aida.util.DateRange NodeUtils.getGraphDate(VSpatial node)
           
static java.lang.Object NodeUtils.getObject(VSpatial node)
           
static javax.vecmath.Point3f Utils3D.getRelativeLocation(VSpatial item, Utils3D.Location location)
          Gets the location relative to the specified VSpatial in terms of the VSpatial's local frame.
static java.lang.Object NodeUtils.getType(VSpatial node)
           
static boolean NodeUtils.isEdge(VSpatial node)
           
static boolean NodeUtils.isNode(VSpatial node)
           
 void MouseRotate.process(VSpatial node)
           
static void NodeUtils.putGraphDate(VSpatial node, anl.aida.util.DateRange date)
           
 void VNode.removeChild(VSpatial child)
           
static void NodeUtils.setAppearence(VSpatial node, MaterialAppearence app)
           
static void NodeUtils.setAsEdge(VSpatial edge, VSpatial one, VSpatial two)
           
static void NodeUtils.setAsNode(VSpatial node)
           
static void NodeUtils.setColor(VSpatial edge, java.awt.Color color)
           
static void NodeUtils.setObject(VSpatial node, java.lang.Object obj)
           
protected  void VSpatial.setParent(VSpatial parent)
          Sets the parent for this Vspatial.
static void NodeUtils.setType(VSpatial node, java.lang.Object type)
           
 void SelectionManager.unselect(VSpatial node)
           
 void NetworkVizCreator.updateLayout(VSpatial spatial, javax.vecmath.Point3f localTrans)
          Updates the location of the specified spatial to the local transform.
 void TSGraphCanvasListener.vSpatialMoved(VSpatial spatial, javax.vecmath.Point3f localTrans)
           
 void DocOpsCanvasListener.vSpatialMoved(VSpatial spatial, javax.vecmath.Point3f localTrans)
           
 void CanvasListener.vSpatialMoved(VSpatial spatial, javax.vecmath.Point3f localTrans)
          Called when a VSpatial has been moved using the mouse.
 void Canvas3D.vSpatialMoved(VSpatial spatial, javax.vecmath.Point3f localTrans)
          Called when a VSpatial has been moved using the mouse.
 

Constructors in anl.aida.viz3d with parameters of type VSpatial
LabeledShape(VSpatial node, java.lang.String label, float[] offset)
           
 

Constructor parameters in anl.aida.viz3d with type arguments of type VSpatial
SelectionManager.Iter(java.util.Iterator<VSpatial> iter)