Class mln_projection_mode

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

public class mln_projection_mode extends Object
struct mln_projection_mode {
    uint32_t size;
    uint32_t fields;
    bool axonometric;
    double x_skew;
    double y_skew;
}
  • Method Details

    • layout

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

      public static final ValueLayout.OfInt size$layout()
      Layout for field:
      uint32_t size
      
    • size$offset

      public static final long size$offset()
      Offset for field:
      uint32_t size
      
    • size

      public static int size(MemorySegment struct)
      Getter for field:
      uint32_t size
      
    • size

      public static void size(MemorySegment struct, int fieldValue)
      Setter for field:
      uint32_t size
      
    • fields$layout

      public static final ValueLayout.OfInt fields$layout()
      Layout for field:
      uint32_t fields
      
    • fields$offset

      public static final long fields$offset()
      Offset for field:
      uint32_t fields
      
    • fields

      public static int fields(MemorySegment struct)
      Getter for field:
      uint32_t fields
      
    • fields

      public static void fields(MemorySegment struct, int fieldValue)
      Setter for field:
      uint32_t fields
      
    • axonometric$layout

      public static final ValueLayout.OfBoolean axonometric$layout()
      Layout for field:
      bool axonometric
      
    • axonometric$offset

      public static final long axonometric$offset()
      Offset for field:
      bool axonometric
      
    • axonometric

      public static boolean axonometric(MemorySegment struct)
      Getter for field:
      bool axonometric
      
    • axonometric

      public static void axonometric(MemorySegment struct, boolean fieldValue)
      Setter for field:
      bool axonometric
      
    • x_skew$layout

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

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

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

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

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

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

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

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