Class Vector4

java.lang.Object
com.raylib.jextract.Vector4
Direct Known Subclasses:
Quaternion

public class Vector4 extends Object
struct Vector4 {
    float x;
    float y;
    float z;
    float w;
}
  • Method Details Link icon

    • layout Link icon

      public static final GroupLayout layout()
      The layout of this struct
    • x$layout Link icon

      public static final ValueLayout.OfFloat x$layout()
      Layout for field:
      float x
      
    • x$offset Link icon

      public static final long x$offset()
      Offset for field:
      float x
      
    • x Link icon

      public static float x(MemorySegment struct)
      Getter for field:
      float x
      
    • x Link icon

      public static void x(MemorySegment struct, float fieldValue)
      Setter for field:
      float x
      
    • y$layout Link icon

      public static final ValueLayout.OfFloat y$layout()
      Layout for field:
      float y
      
    • y$offset Link icon

      public static final long y$offset()
      Offset for field:
      float y
      
    • y Link icon

      public static float y(MemorySegment struct)
      Getter for field:
      float y
      
    • y Link icon

      public static void y(MemorySegment struct, float fieldValue)
      Setter for field:
      float y
      
    • z$layout Link icon

      public static final ValueLayout.OfFloat z$layout()
      Layout for field:
      float z
      
    • z$offset Link icon

      public static final long z$offset()
      Offset for field:
      float z
      
    • z Link icon

      public static float z(MemorySegment struct)
      Getter for field:
      float z
      
    • z Link icon

      public static void z(MemorySegment struct, float fieldValue)
      Setter for field:
      float z
      
    • w$layout Link icon

      public static final ValueLayout.OfFloat w$layout()
      Layout for field:
      float w
      
    • w$offset Link icon

      public static final long w$offset()
      Offset for field:
      float w
      
    • w Link icon

      public static float w(MemorySegment struct)
      Getter for field:
      float w
      
    • w Link icon

      public static void w(MemorySegment struct, float fieldValue)
      Setter for field:
      float w
      
    • asSlice Link icon

      public static MemorySegment asSlice(MemorySegment array, long index)
      Obtains a slice of arrayParam which selects the array element at index. The returned segment has address arrayParam.address() + index * layout().byteSize()
    • sizeof Link icon

      public static long sizeof()
      The size (in bytes) of this struct
    • allocate Link icon

      public static MemorySegment allocate(SegmentAllocator allocator)
      Allocate a segment of size layout().byteSize() using allocator
    • allocateArray Link icon

      public static MemorySegment allocateArray(long elementCount, SegmentAllocator allocator)
      Allocate an array of size elementCount using allocator. The returned segment has size elementCount * layout().byteSize().
    • reinterpret Link icon

      public static MemorySegment reinterpret(MemorySegment addr, Arena arena, Consumer<MemorySegment> cleanup)
      Reinterprets addr using target arena and cleanupAction (if any). The returned segment has size layout().byteSize()
    • reinterpret Link icon

      public static MemorySegment reinterpret(MemorySegment addr, long elementCount, Arena arena, Consumer<MemorySegment> cleanup)
      Reinterprets addr using target arena and cleanupAction (if any). The returned segment has size elementCount * layout().byteSize()