Class ExpandQuaternion

java.lang.Object
com.blamejared.crafttweaker.natives.util.math.ExpandQuaternion

@ZenRegister public class ExpandQuaternion extends Object
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    conj(com.mojang.math.Quaternion internal)
     
    static com.mojang.math.Quaternion
    copy(com.mojang.math.Quaternion internal)
     
    static float
    i(com.mojang.math.Quaternion internal)
     
    static float
    j(com.mojang.math.Quaternion internal)
     
    static float
    k(com.mojang.math.Quaternion internal)
     
    static void
    mul(com.mojang.math.Quaternion internal, float value)
     
    static void
    mul(com.mojang.math.Quaternion internal, com.mojang.math.Quaternion other)
     
    static void
    normalize(com.mojang.math.Quaternion internal)
     
    static float
    r(com.mojang.math.Quaternion internal)
     
    static void
    setValue(com.mojang.math.Quaternion internal, float i, float j, float k, float r)
     
    static void
    slerp(com.mojang.math.Quaternion internal, com.mojang.math.Quaternion other, float value)
     
    static com.mojang.math.Vector3f
    toXYZ(com.mojang.math.Quaternion internal)
     
    static com.mojang.math.Vector3f
    toXYZDegrees(com.mojang.math.Quaternion internal)
     
    static com.mojang.math.Vector3f
    toYXZ(com.mojang.math.Quaternion internal)
     
    static com.mojang.math.Vector3f
    toYXZDegrees(com.mojang.math.Quaternion internal)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ExpandQuaternion

      public ExpandQuaternion()
  • Method Details

    • toXYZ

      public static com.mojang.math.Vector3f toXYZ(com.mojang.math.Quaternion internal)
    • toXYZDegrees

      public static com.mojang.math.Vector3f toXYZDegrees(com.mojang.math.Quaternion internal)
    • toYXZ

      public static com.mojang.math.Vector3f toYXZ(com.mojang.math.Quaternion internal)
    • toYXZDegrees

      public static com.mojang.math.Vector3f toYXZDegrees(com.mojang.math.Quaternion internal)
    • i

      public static float i(com.mojang.math.Quaternion internal)
    • j

      public static float j(com.mojang.math.Quaternion internal)
    • k

      public static float k(com.mojang.math.Quaternion internal)
    • r

      public static float r(com.mojang.math.Quaternion internal)
    • mul

      public static void mul(com.mojang.math.Quaternion internal, com.mojang.math.Quaternion other)
    • mul

      public static void mul(com.mojang.math.Quaternion internal, float value)
    • conj

      public static void conj(com.mojang.math.Quaternion internal)
    • setValue

      public static void setValue(com.mojang.math.Quaternion internal, float i, float j, float k, float r)
    • normalize

      public static void normalize(com.mojang.math.Quaternion internal)
    • slerp

      public static void slerp(com.mojang.math.Quaternion internal, com.mojang.math.Quaternion other, float value)
    • copy

      public static com.mojang.math.Quaternion copy(com.mojang.math.Quaternion internal)