Class ExpandMatrix3f

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

@ZenRegister public class ExpandMatrix3f extends Object
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    add(com.mojang.math.Matrix3f internal, com.mojang.math.Matrix3f other)
     
    static float
    adjugateAndDet(com.mojang.math.Matrix3f internal)
     
    static com.mojang.math.Matrix3f
    copy(com.mojang.math.Matrix3f internal)
     
    static float
    determinant(com.mojang.math.Matrix3f internal)
     
    static boolean
    invert(com.mojang.math.Matrix3f internal)
     
    static void
    load(com.mojang.math.Matrix3f internal, com.mojang.math.Matrix3f other)
     
    static void
    mul(com.mojang.math.Matrix3f internal, float scalar)
     
    static void
    mul(com.mojang.math.Matrix3f internal, com.mojang.math.Matrix3f other)
     
    static void
    mul(com.mojang.math.Matrix3f internal, com.mojang.math.Quaternion quaternion)
     
    static void
    setIdentity(com.mojang.math.Matrix3f internal)
     
    static void
    setValue(com.mojang.math.Matrix3f internal, int row, int col, float value)
     
    static void
    sub(com.mojang.math.Matrix3f internal, com.mojang.math.Matrix3f other)
     
    static float
    trace(com.mojang.math.Matrix3f internal)
     
    static void
    transpose(com.mojang.math.Matrix3f internal)
     

    Methods inherited from class java.lang.Object

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

    • ExpandMatrix3f

      public ExpandMatrix3f()
  • Method Details

    • transpose

      public static void transpose(com.mojang.math.Matrix3f internal)
    • load

      public static void load(com.mojang.math.Matrix3f internal, com.mojang.math.Matrix3f other)
    • setIdentity

      public static void setIdentity(com.mojang.math.Matrix3f internal)
    • adjugateAndDet

      public static float adjugateAndDet(com.mojang.math.Matrix3f internal)
    • determinant

      public static float determinant(com.mojang.math.Matrix3f internal)
    • invert

      public static boolean invert(com.mojang.math.Matrix3f internal)
    • setValue

      public static void setValue(com.mojang.math.Matrix3f internal, int row, int col, float value)
    • mul

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

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

      public static void mul(com.mojang.math.Matrix3f internal, float scalar)
    • add

      public static void add(com.mojang.math.Matrix3f internal, com.mojang.math.Matrix3f other)
    • sub

      public static void sub(com.mojang.math.Matrix3f internal, com.mojang.math.Matrix3f other)
    • trace

      public static float trace(com.mojang.math.Matrix3f internal)
    • copy

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