sim.portrayal3d.simple
Class SpherePortrayal3D

java.lang.Object
  extended bysim.portrayal3d.SimplePortrayal3D
      extended bysim.portrayal3d.simple.SpherePortrayal3D
All Implemented Interfaces:
Portrayal, Portrayal3D, java.io.Serializable

public class SpherePortrayal3D
extends SimplePortrayal3D

See Also:
Sphere, Serialized Form

Constructor Summary
SpherePortrayal3D(javax.vecmath.Color3f c)
           
SpherePortrayal3D(javax.vecmath.Color3f c, float radius)
           
 
Method Summary
 javax.media.j3d.TransformGroup getModel(java.lang.Object obj, javax.media.j3d.TransformGroup j3dModel)
          If argument is null, it should behave like createModel; otherwise, it is updateModel.
 
Methods inherited from class sim.portrayal3d.SimplePortrayal3D
clearPickableFlags, getInspector, getName, setParentPortrayal, setPickableFlags, setPickableFlags, setSelected
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SpherePortrayal3D

public SpherePortrayal3D(javax.vecmath.Color3f c)

SpherePortrayal3D

public SpherePortrayal3D(javax.vecmath.Color3f c,
                         float radius)
Method Detail

getModel

public javax.media.j3d.TransformGroup getModel(java.lang.Object obj,
                                               javax.media.j3d.TransformGroup j3dModel)
Description copied from interface: Portrayal3D
If argument is null, it should behave like createModel; otherwise, it is updateModel. The newly created version or the updated one should be returned. The sub-scene graph repesented by a portrayal is wraped in a TransformGroup, so the parent could place the child at the apropriate position relative to the parent's coordinate system. The child is responsible for positioning itself relative to its own coordinate system. E.g. if the model assumes the position for an object is the postion of its center/upper-left corner/etc, then the portrayal for the object should have the center/upper-left corner of the J3D model of the object in the origin of its coorniate system.