Class Vector3f


  • public class Vector3f
    extends java.lang.Object
    XYZ Float Vector.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      float x
      X Value
      float y
      Y Value
      float z
      Z Value
    • Constructor Summary

      Constructors 
      Constructor Description
      Vector3f()
      Zero Constructor.
      Vector3f​(float x, float y, float z)
      Default Constructor.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • x

        public float x
        X Value
      • y

        public float y
        Y Value
      • z

        public float z
        Z Value
    • Constructor Detail

      • Vector3f

        public Vector3f()
        Zero Constructor.
      • Vector3f

        public Vector3f​(float x,
                        float y,
                        float z)
        Default Constructor.