Trait/Object

squants

SVector

Related Docs: object SVector | package squants

Permalink

trait SVector[A] extends AnyRef

Root trait for representing Vectors

A

Type for the Vector's coordinate values

Source
SVector.scala
Since

0.3.0

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SVector
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. abstract type SVectorType <: SVector[A]

    Permalink

Abstract Value Members

  1. abstract def angle(coordinateX: Int = 0, coordinateY: Int = 1, unit: AngleUnit = Radians): Angle

    Permalink

    The angle between the two Cartesian coordinates at the supplied indices

    The angle between the two Cartesian coordinates at the supplied indices

    coordinateX

    index of the abscissa coordinate (defaults to 0)

    coordinateY

    index of the ordinate coordinate (defaults to 1)

    unit

    unit for the angle (theta) component (defaults to Radians)

    returns

    Angle

  2. abstract def coordinates: Seq[A]

    Permalink

    The list of values that makeup the Vector's Cartesian coordinates

  3. abstract def crossProduct(that: DoubleVector): SVector[A]

    Permalink

    Create the Cross Product of two Vectors

    Create the Cross Product of two Vectors

    that

    Vector[A]

  4. abstract def divide(that: Double): SVectorType

    Permalink

    Reduce a Vector

    Reduce a Vector

    that

    Double

  5. abstract def dotProduct(that: DoubleVector): A

    Permalink

    Create the Dot Product of two Vectors

    Create the Dot Product of two Vectors

    that

    Double

  6. abstract def magnitude: A

    Permalink

    The scalar value of the Vector

  7. abstract def minus(that: SVectorType): SVectorType

    Permalink

    Subtract two Vectors

    Subtract two Vectors

    that

    Vector[A]

  8. abstract def normalize: SVectorType

    Permalink

    Creates the Unit Vector which corresponds to this vector

  9. abstract def plus(that: SVectorType): SVectorType

    Permalink

    Add two Vectors

    Add two Vectors

    that

    Vector[A]

  10. abstract def times(that: Double): SVectorType

    Permalink

    Scale a Vector

    Scale a Vector

    that

    Double

Concrete Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def #*: (DoubleVector) ⇒ SVector[A]

    Permalink
  4. def *(that: DoubleVector): A

    Permalink
  5. def *: (Double) ⇒ SVectorType

    Permalink
  6. def +: (SVectorType) ⇒ SVectorType

    Permalink
  7. def -: (SVectorType) ⇒ SVectorType

    Permalink
  8. def /(that: Double): SVectorType

    Permalink
  9. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  11. def clone(): AnyRef

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. def polar(coordinateX: Int = 0, coordinateY: Int = 1, unit: AngleUnit = Radians): (A, Angle)

    Permalink

    The polar coordinates (r, theta) of the two Cartesian coordinates at the supplied indices

    The polar coordinates (r, theta) of the two Cartesian coordinates at the supplied indices

    coordinateX

    index of the abscissa coordinate (defaults to 0)

    coordinateY

    index of the ordinate coordinate (defaults to 1)

    unit

    unit for the angle (theta) component (defaults to Radians)

    returns

    (A, Angle)

  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  23. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped