object Vec extends Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- Vec
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val NaN: Vec
- def angle(alpha: Angle): Vec
- def apply(x: Long, y: Long, z: Long): Vec
- def apply(x: Double, y: Double): Vec
- def apply(str: String): Vec
- def apply(ds: Seq[Double]): Vec
- def apply(p: (Double, Double, Double)): Vec
- def apply(p: (Double, Double)): Vec
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def fill(v: Double): Vec
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def mag(m: Double): Vec
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def polar(mag: Double, angle: Angle): Vec
- def rand(mag: Double)(implicit rand: Rand): Vec
- def rand(implicit rand: Rand): Vec
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- val x: Vec
- val xy: Vec
- val xyz: Vec
- val y: Vec
- val z: Vec
- val zero: Vec
- implicit object ParsableVec extends Parsable[Vec]
Deprecated Value Members
- def angle(alpha: Double)(implicit d: DummyImplicit): Vec
- Annotations
- @deprecated
- Deprecated
(Since version v0.2.15) use the Angle type instead of just a double
- def apply(angle: Angle): Vec
- Annotations
- @deprecated
- Deprecated
(Since version v0.2.15) use Vec.angle(angle) instead
- def apply(mag: Double, angle: Angle)(implicit d: DummyImplicit): Vec
- Annotations
- @deprecated
- Deprecated
(Since version v0.2.15) use Vec.polar(mag,angle) instead
- def polar(mag: Double, angle: Double)(implicit d: DummyImplicit): Vec
- Annotations
- @deprecated
- Deprecated
(Since version v0.2.15) use the Angle type instead of just a double