Class XrGeometryInstanceTransformFB

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<XrGeometryInstanceTransformFB>
org.lwjgl.openxr.XrGeometryInstanceTransformFB
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class XrGeometryInstanceTransformFB extends org.lwjgl.system.Struct<XrGeometryInstanceTransformFB> implements org.lwjgl.system.NativeResource
A geometry transformation.
Member Descriptions
  • type is the XrStructureType of this structure.
  • next is NULL or a pointer to the next structure in a structure chain. No such structures are defined in core OpenXR or this extension.
  • baseSpace is the XrSpace that defines the geometry instance’s base space for transformations.
  • time is the XrTime that define the time at which the transform is applied.
  • pose is the XrPosef that defines the geometry instance’s pose.
  • scale is the XrVector3f that defines the geometry instance’s scale.
Valid Usage (Implicit)
See Also

XrPosef, XrVector3f, GeometryInstanceSetTransformFB

Layout


 struct XrGeometryInstanceTransformFB {
     XrStructureType type;
     void const * next;
     XrSpace baseSpace;
     XrTime time;
     XrPosef pose;
     XrVector3f scale;
 }
  • Field Details

    • SIZEOF

      public static final int SIZEOF
      The struct size in bytes.
    • ALIGNOF

      public static final int ALIGNOF
      The struct alignment in bytes.
    • TYPE

      public static final int TYPE
      The struct member offsets.
    • NEXT

      public static final int NEXT
      The struct member offsets.
    • BASESPACE

      public static final int BASESPACE
      The struct member offsets.
    • TIME

      public static final int TIME
      The struct member offsets.
    • POSE

      public static final int POSE
      The struct member offsets.
    • SCALE

      public static final int SCALE
      The struct member offsets.
  • Constructor Details

    • XrGeometryInstanceTransformFB

      public XrGeometryInstanceTransformFB(ByteBuffer container)
      Creates a XrGeometryInstanceTransformFB instance at the current position of the specified ByteBuffer container. Changes to the buffer's content will be visible to the struct instance and vice versa.

      The created instance holds a strong reference to the container object.

  • Method Details