Class NSVGImage

  • All Implemented Interfaces:
    org.lwjgl.system.Pointer

    public class NSVGImage
    extends org.lwjgl.system.Struct

    Member documentation

    • width – Width of the image.
    • height – Height of the image.
    • shapes – lLinked list of shapes in the image

    Layout

    
     struct NSVGimage {
         float width;
         float height;
         NSVGshape * shapes;
     }
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  NSVGImage.Buffer
      An array of NSVGImage structs.
      • Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer

        org.lwjgl.system.Pointer.Default
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int ALIGNOF
      The struct alignment in bytes.
      static int HEIGHT
      SHAPES
      The struct member offsets.
      static int SIZEOF
      The struct size in bytes.
      static int WIDTH
      The struct member offsets.
      • Fields inherited from interface org.lwjgl.system.Pointer

        BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE
    • Constructor Summary

      Constructors 
      Constructor Description
      NSVGImage​(java.nio.ByteBuffer container)
      Creates a NSVGImage instance at the current position of the specified ByteBuffer container.
    • Field Detail

      • SIZEOF

        The struct size in bytes.
      • ALIGNOF

        The struct alignment in bytes.
      • WIDTH, HEIGHT, SHAPES

        The struct member offsets.
    • Constructor Detail

      • NSVGImage

        public NSVGImage​(java.nio.ByteBuffer container)
        Creates a NSVGImage instance at the current position of the specified ByteBuffer container. Changes to the buffer's content will be visible to the struct instance and vice versa.

        The created instance holds a strong reference to the container object.

    • Method Detail

      • sizeof

        public int sizeof()
        Specified by:
        sizeof in class org.lwjgl.system.Struct
      • width

        public float width()
        Returns the value of the width field.
      • height

        public float height()
        Returns the value of the height field.
      • shapes

        public NSVGShape shapes()
        Returns a NSVGShape view of the struct pointed to by the shapes field.
      • create

        public static NSVGImage create​(long address)
        Returns a new NSVGImage instance for the specified memory address.
      • createSafe

        @Nullable
        public static NSVGImage createSafe​(long address)
        Like create, but returns null if address is NULL.
      • create

        public static NSVGImage.Buffer create​(long address,
                                              int capacity)
        Create a NSVGImage.Buffer instance at the specified memory.
        Parameters:
        address - the memory address
        capacity - the buffer capacity
      • createSafe

        @Nullable
        public static NSVGImage.Buffer createSafe​(long address,
                                                  int capacity)
        Like create, but returns null if address is NULL.
      • nwidth

        public static float nwidth​(long struct)
        Unsafe version of width().
      • nheight

        public static float nheight​(long struct)
        Unsafe version of height().
      • nshapes

        public static NSVGShape nshapes​(long struct)
        Unsafe version of shapes().