Package org.joml

Class Vector2i

java.lang.Object
org.joml.Vector2i
All Implemented Interfaces:
java.io.Externalizable, java.io.Serializable, Vector2ic

public class Vector2i
extends java.lang.Object
implements java.io.Externalizable, Vector2ic
See Also:
Serialized Form
  • Field Details

    • x

      public int x
    • y

      public int y
  • Constructor Details

    • Vector2i

      public Vector2i()
    • Vector2i

      public Vector2i​(int s)
    • Vector2i

      public Vector2i​(int x, int y)
    • Vector2i

      public Vector2i​(Vector2ic v)
    • Vector2i

      public Vector2i​(java.nio.ByteBuffer buffer)
    • Vector2i

      public Vector2i​(int index, java.nio.ByteBuffer buffer)
    • Vector2i

      public Vector2i​(java.nio.IntBuffer buffer)
    • Vector2i

      public Vector2i​(int index, java.nio.IntBuffer buffer)
  • Method Details

    • x

      public int x()
      Specified by:
      x in interface Vector2ic
    • y

      public int y()
      Specified by:
      y in interface Vector2ic
    • set

      public Vector2i set​(int s)
    • set

      public Vector2i set​(int x, int y)
    • set

      public Vector2i set​(Vector2ic v)
    • set

      public Vector2i set​(Vector2dc v)
    • set

      public Vector2i set​(java.nio.ByteBuffer buffer)
    • set

      public Vector2i set​(int index, java.nio.ByteBuffer buffer)
    • set

      public Vector2i set​(java.nio.IntBuffer buffer)
    • set

      public Vector2i set​(int index, java.nio.IntBuffer buffer)
    • setComponent

      public Vector2i setComponent​(int component, int value) throws java.lang.IllegalArgumentException
      Throws:
      java.lang.IllegalArgumentException
    • get

      public java.nio.ByteBuffer get​(java.nio.ByteBuffer buffer)
      Specified by:
      get in interface Vector2ic
    • get

      public java.nio.ByteBuffer get​(int index, java.nio.ByteBuffer buffer)
      Specified by:
      get in interface Vector2ic
    • get

      public java.nio.IntBuffer get​(java.nio.IntBuffer buffer)
      Specified by:
      get in interface Vector2ic
    • get

      public java.nio.IntBuffer get​(int index, java.nio.IntBuffer buffer)
      Specified by:
      get in interface Vector2ic
    • sub

      public Vector2i sub​(Vector2ic v)
    • sub

      public Vector2i sub​(Vector2ic v, Vector2i dest)
      Specified by:
      sub in interface Vector2ic
    • sub

      public Vector2i sub​(int x, int y)
    • sub

      public Vector2i sub​(int x, int y, Vector2i dest)
      Specified by:
      sub in interface Vector2ic
    • lengthSquared

      public long lengthSquared()
      Specified by:
      lengthSquared in interface Vector2ic
    • length

      public double length()
      Specified by:
      length in interface Vector2ic
    • distance

      public double distance​(Vector2ic v)
      Specified by:
      distance in interface Vector2ic
    • distance

      public double distance​(int x, int y)
      Specified by:
      distance in interface Vector2ic
    • distanceSquared

      public long distanceSquared​(Vector2ic v)
      Specified by:
      distanceSquared in interface Vector2ic
    • distanceSquared

      public long distanceSquared​(int x, int y)
      Specified by:
      distanceSquared in interface Vector2ic
    • add

      public Vector2i add​(Vector2ic v)
    • add

      public Vector2i add​(Vector2ic v, Vector2i dest)
      Specified by:
      add in interface Vector2ic
    • add

      public Vector2i add​(int x, int y)
    • add

      public Vector2i add​(int x, int y, Vector2i dest)
      Specified by:
      add in interface Vector2ic
    • mul

      public Vector2i mul​(int scalar)
    • mul

      public Vector2i mul​(int scalar, Vector2i dest)
      Specified by:
      mul in interface Vector2ic
    • mul

      public Vector2i mul​(Vector2ic v)
    • mul

      public Vector2i mul​(Vector2ic v, Vector2i dest)
      Specified by:
      mul in interface Vector2ic
    • mul

      public Vector2i mul​(int x, int y)
    • mul

      public Vector2i mul​(int x, int y, Vector2i dest)
      Specified by:
      mul in interface Vector2ic
    • zero

      public Vector2i zero()
    • writeExternal

      public void writeExternal​(java.io.ObjectOutput out) throws java.io.IOException
      Specified by:
      writeExternal in interface java.io.Externalizable
      Throws:
      java.io.IOException
    • readExternal

      public void readExternal​(java.io.ObjectInput in) throws java.io.IOException, java.lang.ClassNotFoundException
      Specified by:
      readExternal in interface java.io.Externalizable
      Throws:
      java.io.IOException
      java.lang.ClassNotFoundException
    • negate

      public Vector2i negate()
    • negate

      public Vector2i negate​(Vector2i dest)
      Specified by:
      negate in interface Vector2ic
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class java.lang.Object
    • equals

      public boolean equals​(java.lang.Object obj)
      Overrides:
      equals in class java.lang.Object
    • toString

      public java.lang.String toString()
      Overrides:
      toString in class java.lang.Object
    • toString

      public java.lang.String toString​(java.text.NumberFormat formatter)
    • toImmutable

      public Vector2ic toImmutable()