Class mln_projected_meters

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

public class mln_projected_meters extends Object
struct mln_projected_meters {
    double northing;
    double easting;
}
  • Method Details

    • layout

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

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

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

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

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

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

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

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

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