Uses of Class
JSci.maths.Double3Vector

Packages that use Double3Vector
JSci.maths   
 

Uses of Double3Vector in JSci.maths
 

Methods in JSci.maths that return Double3Vector
 Double3Vector Double3Vector.add(Double3Vector v)
          Returns the addition of this vector and another.
 Double3Vector Quaternion.imag()
          Returns the imaginary part of this quaternion.
 Double3Vector Double3Vector.multiply(Double3Vector v)
          Returns the vector product of this vector and another (so(3) algebra).
 Double3Vector Double3Vector.subtract(Double3Vector v)
          Returns the subtraction of this vector by another.
 

Methods in JSci.maths with parameters of type Double3Vector
 Double3Vector Double3Vector.add(Double3Vector v)
          Returns the addition of this vector and another.
 Complex3Vector Complex3Vector.add(Double3Vector v)
          Returns the addition of this vector and another.
 Quaternion Quaternion.addImag(Double3Vector imag)
          Returns the addition of this quaternion with an imaginary part.
 Double3Vector Double3Vector.multiply(Double3Vector v)
          Returns the vector product of this vector and another (so(3) algebra).
 double Double3Vector.scalarProduct(Double3Vector v)
          Returns the scalar product of this vector and another.
 Double3Vector Double3Vector.subtract(Double3Vector v)
          Returns the subtraction of this vector by another.
 Complex3Vector Complex3Vector.subtract(Double3Vector v)
          Returns the subtraction of this vector by another.
 Quaternion Quaternion.subtractImag(Double3Vector imag)
          Returns the subtraction of this quaternion by an imaginary part.
 

Constructors in JSci.maths with parameters of type Double3Vector
Quaternion(double real, Double3Vector imag)
          Constructs a quaternion.