Class mln_vec3

java.lang.Object
org.maplibre.nativeffi.internal.c.mln_vec3

public class mln_vec3 extends Object
struct mln_vec3 {
    double x;
    double y;
    double z;
}
  • Method Details

    • layout

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

      public static final ValueLayout.OfDouble x$layout()
      Layout for field:
      double x
      
    • x$offset

      public static final long x$offset()
      Offset for field:
      double x
      
    • x

      public static double x(MemorySegment struct)
      Getter for field:
      double x
      
    • x

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

      public static final ValueLayout.OfDouble y$layout()
      Layout for field:
      double y
      
    • y$offset

      public static final long y$offset()
      Offset for field:
      double y
      
    • y

      public static double y(MemorySegment struct)
      Getter for field:
      double y
      
    • y

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

      public static final ValueLayout.OfDouble z$layout()
      Layout for field:
      double z
      
    • z$offset

      public static final long z$offset()
      Offset for field:
      double z
      
    • z

      public static double z(MemorySegment struct)
      Getter for field:
      double z
      
    • z

      public static void z(MemorySegment struct, double fieldValue)
      Setter for field:
      double z
      
    • 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()