edu.utexas.cs.sdao.reyes.graph

SurfaceNode

class SurfaceNode extends AnyRef

Represents a node for a surface, along with any potential child nodes in its hierarchy.

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SurfaceNode
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SurfaceNode(surface: Surface, transformMatrix: Animatable[Matrix4] = ..., children: Vector[SurfaceNode] = ..., boundingSphere: Option[Animatable[BoundingSphere]] = scala.None)

    surface

    the surface at the node

    transformMatrix

    the transformation matrix for the node and its hierarchy

    children

    the child nodes of the current node

    boundingSphere

    a sphere that bounds the current surface and its entire hierarchy; only provide this value if the actual bounding sphere of the hierarchy is smaller than the union of all of its members' bounding spheres

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. val boundingSphere: Option[Animatable[BoundingSphere]]

    a sphere that bounds the current surface and its entire hierarchy; only provide this value if the actual bounding sphere of the hierarchy is smaller than the union of all of its members' bounding spheres

  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  18. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  19. def toString(): String

    Definition Classes
    AnyRef → Any
  20. def transform(newTransform: Matrix4): SurfaceNode

    Transforms the current node, left-multiplying its transformation matrix by another matrix.

    Transforms the current node, left-multiplying its transformation matrix by another matrix.

    newTransform

    the new transform to add (by left-multiplication)

    returns

    the transformed node

  21. def transformedChildren: Vector[SurfaceNode]

    The node's child nodes, transformed using the current transformation matrix.

    The node's child nodes, transformed using the current transformation matrix. Each new matrix is the child node's transformation matrix left-multiplied by the current (parent) matrix.

    returns

    the transformed child nodes

  22. def transformedSurface: Surface

    The node's surface, transformed using the current transformation matrix.

    The node's surface, transformed using the current transformation matrix.

    returns

    the transformed surface

  23. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped