field.kit.gl.scene

Group

class Group extends Spatial with Branch[Spatial]

basic scene-graph element that contains a group of spatials *

Inherited

  1. Hide All
  2. Show all
  1. Branch
  2. Iterable
  3. IterableLike
  4. Equals
  5. Traversable
  6. GenericTraversableTemplate
  7. TraversableLike
  8. TraversableOnce
  9. HasNewBuilder
  10. Spatial
  11. Renderable
  12. GLUser
  13. BaseNode
  14. Node
  15. Logger
  16. AnyRef
  17. Any

Visibility

  1. Public
  2. All

Instance constructors

  1. new Group(name: String)

Type Members

  1. type Self = Iterable[Spatial]

    attributes: protected
    definition classes: TraversableLike

Value Members

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

    attributes: final
    definition classes: AnyRef
  2. def !=(arg0: Any): Boolean

    o != arg0 is the same as !(o == (arg0)).

    o != arg0 is the same as !(o == (arg0)).

    arg0

    the object to compare against this object for dis-equality .

    returns

    false if the receiver object is equivalent to the argument; true otherwise.

    attributes: final
    definition classes: Any
  3. def ##(): Int

    attributes: final
    definition classes: AnyRef → Any
  4. def $asInstanceOf[T0](): T0

    attributes: final
    definition classes: AnyRef
  5. def $isInstanceOf[T0](): Boolean

    attributes: final
    definition classes: AnyRef
  6. def ++[B >: Spatial, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[Spatial], B, That]): That

    definition classes: TraversableLike
  7. def +=(child: Spatial): Spatial

    definition classes: Branch
  8. def -=(child: Spatial): Spatial

    definition classes: Branch
  9. def /:[B](z: B)(op: (B, Spatial) ⇒ B): B

    definition classes: TraversableOnce
  10. def :\[B](z: B)(op: (Spatial, B) ⇒ B): B

    definition classes: TraversableOnce
  11. def ==(arg0: AnyRef): Boolean

    o == arg0 is the same as if (o eq null) arg0 eq null else o.equals(arg0).

    o == arg0 is the same as if (o eq null) arg0 eq null else o.equals(arg0).

    arg0

    the object to compare against this object for equality .

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    attributes: final
    definition classes: AnyRef
  12. def ==(arg0: Any): Boolean

    o == arg0 is the same as o.equals(arg0).

    o == arg0 is the same as o.equals(arg0).

    arg0

    the object to compare against this object for equality .

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    attributes: final
    definition classes: Any
  13. def addString(b: StringBuilder): StringBuilder

    definition classes: TraversableOnce
  14. def addString(b: StringBuilder, sep: String): StringBuilder

    definition classes: TraversableOnce
  15. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    definition classes: TraversableOnce
  16. def apply(name: String): Spatial

    no summary matey

    returns

    returns the first child which matches the given name

    definition classes: Branch
  17. def asInstanceOf[T0]: T0

    This method is used to cast the receiver object to be of type T0.

    This method is used to cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expressionList(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested typed.

    returns

    the receiver object .

    attributes: final
    definition classes: Any
  18. def canEqual(that: Any): Boolean

    definition classes: IterableLike → Equals
  19. var children: ArrayBuffer[Spatial]

    attributes: protected
    definition classes: Branch
  20. def clone(): AnyRef

    This method creates and returns a copy of the receiver object .

    This method creates and returns a copy of the receiver object .

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object .

    attributes: protected
    definition classes: AnyRef
  21. def collect[B, That](pf: PartialFunction[Spatial, B])(implicit bf: CanBuildFrom[Iterable[Spatial], B, That]): That

    definition classes: TraversableLike
  22. def companion: GenericCompanion[Iterable[A][A]]

    definition classes: Iterable → Traversable → GenericTraversableTemplate
  23. def copyToArray[B >: Spatial](xs: Array[B], start: Int, len: Int): Unit

    definition classes: IterableLike → TraversableLike → TraversableOnce
  24. def copyToArray[B >: Spatial](xs: Array[B]): Unit

    definition classes: TraversableOnce
  25. def copyToArray[B >: Spatial](xs: Array[B], start: Int): Unit

    definition classes: TraversableOnce
  26. def copyToBuffer[B >: Spatial](dest: Buffer[B]): Unit

    definition classes: TraversableOnce
  27. def count(p: (Spatial) ⇒ Boolean): Int

    definition classes: TraversableOnce
  28. def draw: Unit

    definition classes: GroupSpatial
  29. def drop(n: Int): Iterable[Spatial]

    definition classes: TraversableLike
  30. def dropRight(n: Int): Iterable[Spatial]

    definition classes: IterableLike
  31. def dropWhile(p: (Spatial) ⇒ Boolean): Iterable[Spatial]

    definition classes: TraversableLike
  32. def elements: Iterator[Spatial]

    definition classes: IterableLike
      deprecated:
    1. use iterator' instead

  33. def eq(arg0: AnyRef): Boolean

    This method is used to test whether the argument (arg0) is a reference to the receiver object (this).

    This method is used to test whether the argument (arg0) is a reference to the receiver object (this).

    The eq method implements an [http://en.wikipedia.org/wiki/Equivalence_relation equivalence relation] on non-null instances of AnyRef: * It is reflexive: for any non-null instance x of type AnyRef, x.eq(x) returns true. * It is symmetric: for any non-null instances x and y of type AnyRef, x.eq(y) returns true if and only if y.eq(x) returns true. * It is transitive: for any non-null instances x, y, and z of type AnyRef if x.eq(y) returns true and y.eq(z) returns true, then x.eq(z) returns true.

    Additionally, the eq method has three other properties. * It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false. * For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false. * null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    arg0

    the object to compare against this object for reference equality .

    returns

    true if the argument is a reference to the receiver object; false otherwise.

    attributes: final
    definition classes: AnyRef
  34. def equals(arg0: Any): Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

    The default implementations of this method is an [http://en.wikipedia.org/wiki/Equivalence_relation equivalence relation]: * It is reflexive: for any instance x of type Any, x.equals(x) should return true. * It is symmetric: for any instances x and y of type Any, x.equals(y) should return true if and only if y.equals(x) returns true. * It is transitive: for any instances x, y, and z of type AnyRef if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.

    If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is often necessary to override hashCode to ensure that objects that are "equal" (o1.equals(o2) returns true) hash to the same scala.Int (o1.hashCode.equals(o2.hashCode)).

    arg0

    the object to compare against this object for equality .

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    definition classes: AnyRef → Any
  35. def error(m: Any*): Unit

    definition classes: Logger
  36. def exists(p: (Spatial) ⇒ Boolean): Boolean

    definition classes: IterableLike → TraversableLike → TraversableOnce
  37. def fatal(code: Int, m: Any*): Unit

    definition classes: Logger
  38. def fatal(m: Any*): Unit

    definition classes: Logger
  39. def filter(p: (Spatial) ⇒ Boolean): Iterable[Spatial]

    definition classes: TraversableLike
  40. def filterNot(p: (Spatial) ⇒ Boolean): Iterable[Spatial]

    definition classes: TraversableLike
  41. def finalize(): Unit

    This method is called by the garbage collector on the receiver object when garbage collection determines that there are no more references to the object .

    This method is called by the garbage collector on the receiver object when garbage collection determines that there are no more references to the object .

    The details of when and if the finalize method are invoked, as well as the interaction between finalizeand non-local returns and exceptions, are all platform dependent.

    attributes: protected
    definition classes: AnyRef
  42. def find(p: (Spatial) ⇒ Boolean): Option[Spatial]

    definition classes: IterableLike → TraversableLike → TraversableOnce
  43. def fine(m: Any*): Unit

    definition classes: Logger
  44. def first: Spatial

    definition classes: IterableLike
      deprecated:
    1. use head' instead

  45. def firstOption: Option[Spatial]

    definition classes: IterableLike
      deprecated:
    1. use headOption' instead

  46. def flatMap[B, That](f: (Spatial) ⇒ Traversable[B])(implicit bf: CanBuildFrom[Iterable[Spatial], B, That]): That

    definition classes: TraversableLike
  47. def flatten[B](implicit asTraversable: (Spatial) ⇒ Traversable[B]): Iterable[B]

    definition classes: GenericTraversableTemplate
  48. def foldLeft[B](z: B)(op: (B, Spatial) ⇒ B): B

    definition classes: TraversableOnce
  49. def foldRight[B](z: B)(op: (Spatial, B) ⇒ B): B

    definition classes: IterableLike → TraversableOnce
  50. def forall(p: (Spatial) ⇒ Boolean): Boolean

    definition classes: IterableLike → TraversableLike → TraversableOnce
  51. def foreach[U](f: (Spatial) ⇒ U): Unit

    definition classes: IterableLike → TraversableLike → TraversableOnce
  52. def genericBuilder[B]: Builder[B, Iterable[B]]

    definition classes: GenericTraversableTemplate
  53. def getClass(): java.lang.Class[_]

    Returns a representation that corresponds to the dynamic class of the receiver object .

    Returns a representation that corresponds to the dynamic class of the receiver object .

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object .

    attributes: final
    definition classes: AnyRef
  54. def gl: GL

    definition classes: GLUser
  55. def glu: GLU

    definition classes: GLUser
  56. def groupBy[K](f: (Spatial) ⇒ K): Map[K, Iterable[Spatial]]

    definition classes: TraversableLike
  57. def grouped(size: Int): Iterator[Iterable[Spatial]]

    definition classes: IterableLike
  58. def hasDefiniteSize: Boolean

    definition classes: TraversableLike → TraversableOnce
  59. def hashCode(): Int

    Returns a hash code value for the object .

    Returns a hash code value for the object .

    The default hashing algorithm is platform dependent.

    Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)) yet not be equal (o1.equals(o2) returns false). A degenerate implementation could always return 0. However, it is required that if two objects are equal (o1.equals(o2) returns true) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals method.

    returns

    the hash code value for the object .

    definition classes: AnyRef → Any
  60. def head: Spatial

    definition classes: IterableLike → TraversableLike
  61. def headOption: Option[Spatial]

    definition classes: TraversableLike
  62. def info(m: Any*): Unit

    definition classes: Logger
  63. def init: Iterable[Spatial]

    definition classes: TraversableLike
  64. def isEmpty: Boolean

    definition classes: IterableLike → TraversableLike → TraversableOnce
  65. def isInstanceOf[T0]: Boolean

    This method is used to test whether the dynamic type of the receiver object is T0.

    This method is used to test whether the dynamic type of the receiver object is T0.

    Note that the test result of the test is modulo Scala's erasure semantics. Therefore the expression1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested typed.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    attributes: final
    definition classes: Any
  66. def isTraversableAgain: Boolean

    attributes: final
    definition classes: TraversableLike → TraversableOnce
  67. var isVisible: Boolean

    definition classes: Spatial
  68. def iterator: Iterator[Spatial]

    definition classes: Branch → IterableLike
  69. def last: Spatial

    definition classes: TraversableLike
  70. def lastOption: Option[Spatial]

    definition classes: TraversableLike
  71. def logName: String

    definition classes: Logger
  72. def logName_=(name: String): Unit

    definition classes: Logger
  73. def map[B, That](f: (Spatial) ⇒ B)(implicit bf: CanBuildFrom[Iterable[Spatial], B, That]): That

    definition classes: TraversableLike
  74. def max[B >: Spatial](implicit cmp: Ordering[B]): Spatial

    definition classes: TraversableOnce
  75. def min[B >: Spatial](implicit cmp: Ordering[B]): Spatial

    definition classes: TraversableOnce
  76. def mkString: String

    definition classes: TraversableOnce
  77. def mkString(sep: String): String

    definition classes: TraversableOnce
  78. def mkString(start: String, sep: String, end: String): String

    definition classes: TraversableOnce
  79. def ne(arg0: AnyRef): Boolean

    o.ne(arg0) is the same as !(o.eq(arg0)).

    o.ne(arg0) is the same as !(o.eq(arg0)).

    arg0

    the object to compare against this object for reference dis-equality .

    returns

    false if the argument is not a reference to the receiver object; true otherwise.

    attributes: final
    definition classes: AnyRef
  80. def newBuilder: Builder[Spatial, Iterable[Spatial]]

    attributes: protected[this]
    definition classes: GenericTraversableTemplate → HasNewBuilder
  81. def nonEmpty: Boolean

    definition classes: TraversableOnce
  82. def notify(): Unit

    Wakes up a single thread that is waiting on the receiver object's monitor .

    Wakes up a single thread that is waiting on the receiver object's monitor .

    attributes: final
    definition classes: AnyRef
  83. def notifyAll(): Unit

    Wakes up all threads that are waiting on the receiver object's monitor .

    Wakes up all threads that are waiting on the receiver object's monitor .

    attributes: final
    definition classes: AnyRef
  84. var parent: Node

    This node's parent

    This node's parent

    definition classes: Node
  85. def partition(p: (Spatial) ⇒ Boolean): (Iterable[Spatial], Iterable[Spatial])

    definition classes: TraversableLike
  86. def product[B >: Spatial](implicit num: Numeric[B]): B

    definition classes: TraversableOnce
  87. def projection: IterableView[Spatial, Iterable[Spatial]]

    definition classes: IterableLike
      deprecated:
    1. use view' instead

  88. def reduceLeft[B >: Spatial](op: (B, Spatial) ⇒ B): B

    definition classes: TraversableOnce
  89. def reduceLeftOption[B >: Spatial](op: (B, Spatial) ⇒ B): Option[B]

    definition classes: TraversableOnce
  90. def reduceRight[B >: Spatial](op: (Spatial, B) ⇒ B): B

    definition classes: IterableLike → TraversableOnce
  91. def reduceRightOption[B >: Spatial](op: (Spatial, B) ⇒ B): Option[B]

    definition classes: TraversableOnce
  92. def render: Unit

    definition classes: SpatialRenderable
  93. def repr: Iterable[Spatial]

    definition classes: TraversableLike
  94. def reversed: List[Spatial]

    attributes: protected[this]
    definition classes: TraversableOnce
  95. var rotation: Vec3

    definition classes: Spatial
  96. def sameElements[B >: Spatial](that: Iterable[B]): Boolean

    definition classes: IterableLike
  97. var scale: Vec3

    definition classes: Spatial
  98. def scanLeft[B, That](z: B)(op: (B, Spatial) ⇒ B)(implicit bf: CanBuildFrom[Iterable[Spatial], B, That]): That

    definition classes: TraversableLike
  99. def scanRight[B, That](z: B)(op: (Spatial, B) ⇒ B)(implicit bf: CanBuildFrom[Iterable[Spatial], B, That]): That

    definition classes: TraversableLike
  100. def size: Int

    definition classes: Branch → TraversableOnce
  101. def slice(from: Int, until: Int): Iterable[Spatial]

    definition classes: IterableLike → TraversableLike
  102. def sliding[B >: Spatial](size: Int, step: Int): Iterator[Iterable[Spatial]]

    definition classes: IterableLike
  103. def sliding[B >: Spatial](size: Int): Iterator[Iterable[Spatial]]

    definition classes: IterableLike
  104. def span(p: (Spatial) ⇒ Boolean): (Iterable[Spatial], Iterable[Spatial])

    definition classes: TraversableLike
  105. def splitAt(n: Int): (Iterable[Spatial], Iterable[Spatial])

    definition classes: TraversableLike
  106. def stringPrefix: String

    definition classes: TraversableLike
  107. def sum[B >: Spatial](implicit num: Numeric[B]): B

    definition classes: TraversableOnce
  108. def synchronized[T0](arg0: T0): T0

    attributes: final
    definition classes: AnyRef
  109. def tail: Iterable[Spatial]

    definition classes: TraversableLike
  110. def take(n: Int): Iterable[Spatial]

    definition classes: IterableLike → TraversableLike
  111. def takeRight(n: Int): Iterable[Spatial]

    definition classes: IterableLike
  112. def takeWhile(p: (Spatial) ⇒ Boolean): Iterable[Spatial]

    definition classes: IterableLike → TraversableLike
  113. def thisCollection: Iterable[Spatial]

    attributes: protected[this]
    definition classes: IterableLike → TraversableLike
  114. def toArray[B >: Spatial](implicit arg0: ClassManifest[B]): Array[B]

    definition classes: TraversableOnce
  115. def toCollection(repr: Iterable[Spatial]): Iterable[Spatial]

    attributes: protected[this]
    definition classes: IterableLike → TraversableLike
  116. def toIndexedSeq[B >: Spatial]: IndexedSeq[B]

    definition classes: TraversableOnce
  117. def toIterable: Iterable[Spatial]

    definition classes: IterableLike → TraversableOnce
  118. def toIterator: Iterator[Spatial]

    definition classes: TraversableLike → TraversableOnce
  119. def toList: List[Spatial]

    definition classes: TraversableOnce
  120. def toMap[T, U](implicit ev: <:<[Spatial, (T, U)]): Map[T, U]

    definition classes: TraversableOnce
  121. def toSeq: Seq[Spatial]

    definition classes: TraversableOnce
  122. def toSet[B >: Spatial]: Set[B]

    definition classes: TraversableOnce
  123. def toStream: Stream[Spatial]

    definition classes: IterableLike → TraversableOnce
  124. def toString(): String

    Returns a string representation of the object .

    Returns a string representation of the object .

    The default representation is platform dependent.

    returns

    a string representation of the object .

    definition classes: TraversableLike → AnyRef → Any
  125. def toTraversable: Traversable[Spatial]

    definition classes: TraversableLike → TraversableOnce
  126. def toggleVisibility: Unit

    definition classes: Spatial
  127. var translation: Vec3

    definition classes: Spatial
  128. def transpose[B](implicit asTraversable: (Spatial) ⇒ Traversable[B]): Iterable[Iterable[B]]

    definition classes: GenericTraversableTemplate
  129. def unzip[A1, A2](implicit asPair: (Spatial) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])

    definition classes: GenericTraversableTemplate
  130. def view(from: Int, until: Int): IterableView[Spatial, Iterable[Spatial]]

    definition classes: IterableLike → TraversableLike
  131. def view: IterableView[Spatial, Iterable[Spatial]]

    definition classes: IterableLike → TraversableLike
  132. def wait(): Unit

    attributes: final
    definition classes: AnyRef
  133. def wait(arg0: Long, arg1: Int): Unit

    attributes: final
    definition classes: AnyRef
  134. def wait(arg0: Long): Unit

    attributes: final
    definition classes: AnyRef
  135. def warn(m: Any*): Unit

    definition classes: Logger
  136. def withFilter(p: (Spatial) ⇒ Boolean): WithFilter

    definition classes: TraversableLike
  137. def zip[A1 >: Spatial, B, That](that: Iterable[B])(implicit bf: CanBuildFrom[Iterable[Spatial], (A1, B), That]): That

    definition classes: IterableLike
  138. def zipAll[B, A1 >: Spatial, That](that: Iterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Iterable[Spatial], (A1, B), That]): That

    definition classes: IterableLike
  139. def zipWithIndex[A1 >: Spatial, That](implicit bf: CanBuildFrom[Iterable[Spatial], (A1, Int), That]): That

    definition classes: IterableLike