Uses of Class
javajs.util.T3d

Packages that use T3d
Package
Description
 
  • Uses of T3d in javajs.util

    Subclasses of T3d in javajs.util
    Modifier and Type
    Class
    Description
    class 
    A 3 element vector that is represented by double precision floating point x,y,z coordinates.
    Methods in javajs.util with parameters of type T3d
    Modifier and Type
    Method
    Description
    final void
    T3d.add(T3d t1)
    Sets the value of this tuple to the vector sum of itself and tuple t1.
    final void
    T3d.add2(T3d t1, T3d t2)
    Sets the value of this tuple to the vector sum of tuples t1 and t2.
    final void
    T3d.scaleAdd(double s, T3d t1, T3d t2)
    Sets the value of this tuple to the scalar multiplication of tuple t1 and then adds tuple t2 (this = s*t1 + t2).
    final void
    T3d.scaleAdd2(double s, T3d t1, T3d t2)
    Sets the value of this tuple to the scalar multiplication of tuple t1 and then adds tuple t2 (this = s*t1 + t2).
    final void
    T3d.setT(T3d t1)
    Sets the value of this tuple to the value of the Tuple3d argument.
    final void
    T3d.sub(T3d t1)
    Sets the value of this tuple to the vector difference of itself and tuple t1 (this = this - t1).
    final void
    T3d.sub2(T3d t1, T3d t2)
    Sets the value of this tuple to the vector difference of tuple t1 and t2 (this = t1 - t2).