Class Matrix3d

java.lang.Object
eu.mihosoft.vrl.v3d.Matrix3d

public class Matrix3d extends Object
3D Matrix3d
Author:
cpoliwoda
  • Field Details Link icon

    • m11 Link icon

      public double m11
    • m12 Link icon

      public double m12
    • m13 Link icon

      public double m13
    • m21 Link icon

      public double m21
    • m22 Link icon

      public double m22
    • m23 Link icon

      public double m23
    • m31 Link icon

      public double m31
    • m32 Link icon

      public double m32
    • m33 Link icon

      public double m33
    • ZERO Link icon

      public static final Matrix3d ZERO
    • UNITY Link icon

      public static final Matrix3d UNITY
  • Constructor Details Link icon

    • Matrix3d Link icon

      public Matrix3d(double m11, double m12, double m13, double m21, double m22, double m23, double m31, double m32, double m33)
  • Method Details Link icon

    • toString Link icon

      public String toString()
      Overrides:
      toString in class Object
    • equals Link icon

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • times Link icon

      public Matrix3d times(double a)
      Returns the product of this matrix and the specified value.
      Parameters:
      a - the value Note: this matrix is not modified.
      Returns:
      the product of this matrix and the specified value
    • times Link icon

      public Vector3d times(Vector3d a)
      Returns the product of this matrix and the specified vector.
      Parameters:
      a - the vector Note: the vector is not modified.
      Returns:
      the product of this matrix and the specified vector