Class Ray

java.lang.Object
com.raylib.jextract.Ray

public class Ray extends Object
struct Ray {
    Vector3 position;
    Vector3 direction;
}
  • Method Details

    • layout

      public static final GroupLayout layout()
      The layout of this struct
    • position$layout

      public static final GroupLayout position$layout()
      Layout for field:
      Vector3 position
      
    • position$offset

      public static final long position$offset()
      Offset for field:
      Vector3 position
      
    • position

      public static MemorySegment position(MemorySegment struct)
      Getter for field:
      Vector3 position
      
    • position

      public static void position(MemorySegment struct, MemorySegment fieldValue)
      Setter for field:
      Vector3 position
      
    • direction$layout

      public static final GroupLayout direction$layout()
      Layout for field:
      Vector3 direction
      
    • direction$offset

      public static final long direction$offset()
      Offset for field:
      Vector3 direction
      
    • direction

      public static MemorySegment direction(MemorySegment struct)
      Getter for field:
      Vector3 direction
      
    • direction

      public static void direction(MemorySegment struct, MemorySegment fieldValue)
      Setter for field:
      Vector3 direction
      
    • asSlice

      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

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

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

      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

      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

      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()