Package physx.common

Class PxVec4.Raw

java.lang.Object
physx.common.PxVec4.Raw
Enclosing class:
PxVec4

public static class PxVec4.Raw extends Object
  • Constructor Summary

    Constructors
    Constructor
    Description
    Raw()
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    destroy(long address)
     
    static float
    dot(long address, long v)
     
    static long
    getNormalized(long address)
     
    static float
    getW(long address)
     
    static float
    getX(long address)
     
    static long
    getXYZ(long address)
     
    static float
    getY(long address)
     
    static float
    getZ(long address)
     
    static boolean
    isFinite(long address)
     
    static boolean
    isNormalized(long address)
     
    static boolean
    isZero(long address)
     
    static float
    magnitude(long address)
     
    static float
    magnitudeSquared(long address)
     
    static long
    maximum(long address, long v)
     
    static long
    minimum(long address, long v)
     
    static long
    multiply(long address, long a)
     
    static float
    normalize(long address)
     
    static long
     
    static long
    PxVec4(float x, float y, float z, float w)
     
    static void
    PxVec4_placed(long address)
     
    static void
    PxVec4_placed(long address, float x, float y, float z, float w)
     
    static void
    setW(long address, float value)
     
    static void
    setX(long address, float value)
     
    static void
    setY(long address, float value)
     
    static void
    setZ(long address, float value)
     

    Methods inherited from class java.lang.Object

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

    • Raw

      public Raw()
  • Method Details

    • PxVec4_placed

      public static void PxVec4_placed(long address)
    • PxVec4_placed

      public static void PxVec4_placed(long address, float x, float y, float z, float w)
    • PxVec4

      public static long PxVec4()
    • PxVec4

      public static long PxVec4(float x, float y, float z, float w)
    • destroy

      public static void destroy(long address)
    • getX

      public static float getX(long address)
    • setX

      public static void setX(long address, float value)
    • getY

      public static float getY(long address)
    • setY

      public static void setY(long address, float value)
    • getZ

      public static float getZ(long address)
    • setZ

      public static void setZ(long address, float value)
    • getW

      public static float getW(long address)
    • setW

      public static void setW(long address, float value)
    • isZero

      public static boolean isZero(long address)
    • isFinite

      public static boolean isFinite(long address)
    • isNormalized

      public static boolean isNormalized(long address)
    • magnitudeSquared

      public static float magnitudeSquared(long address)
    • magnitude

      public static float magnitude(long address)
    • dot

      public static float dot(long address, long v)
    • getNormalized

      public static long getNormalized(long address)
    • normalize

      public static float normalize(long address)
    • multiply

      public static long multiply(long address, long a)
    • minimum

      public static long minimum(long address, long v)
    • maximum

      public static long maximum(long address, long v)
    • getXYZ

      public static long getXYZ(long address)