Package org.lwjgl.nuklear
Class NkChart
- All Implemented Interfaces:
Pointer
struct nk_chart {
int slot;
float x;
float y;
float w;
float h;
{@link NkChartSlot struct nk_chart_slot} slots[NK_CHART_MAX_SLOT];
}
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class org.lwjgl.system.Struct
Struct.StructValidation
Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer
Pointer.Default
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
The struct alignment in bytes.static final int
The struct member offsets.static final int
The struct size in bytes.static final int
The struct member offsets.static final int
The struct member offsets.static final int
The struct member offsets.static final int
The struct member offsets.static final int
The struct member offsets.Fields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE
-
Constructor Summary
ConstructorsConstructorDescriptionNkChart
(ByteBuffer container) Creates aNkChart
instance at the current position of the specifiedByteBuffer
container. -
Method Summary
Modifier and TypeMethodDescriptionstatic NkChart
create
(long address) Returns a newNkChart
instance for the specified memory address.static NkChart.Buffer
create
(long address, int capacity) Create aNkChart.Buffer
instance at the specified memory.static @Nullable NkChart
createSafe
(long address) static @Nullable NkChart.Buffer
createSafe
(long address, int capacity) float
h()
static float
nh
(long struct) Unsafe version ofh()
.static int
nslot
(long struct) Unsafe version ofslot()
.static NkChartSlot.Buffer
nslots
(long struct) Unsafe version ofslots()
.static NkChartSlot
nslots
(long struct, int index) Unsafe version ofslots
.static float
nw
(long struct) Unsafe version ofw()
.static float
nx
(long struct) Unsafe version ofx()
.static float
ny
(long struct) Unsafe version ofy()
.int
sizeof()
Returnssizeof(struct)
.int
slot()
slots()
slots
(int index) float
w()
float
x()
float
y()
Methods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toString
-
Field Details
-
SIZEOF
public static final int SIZEOFThe struct size in bytes. -
ALIGNOF
public static final int ALIGNOFThe struct alignment in bytes. -
SLOT
public static final int SLOTThe struct member offsets. -
X
public static final int XThe struct member offsets. -
Y
public static final int YThe struct member offsets. -
W
public static final int WThe struct member offsets. -
H
public static final int HThe struct member offsets. -
SLOTS
public static final int SLOTSThe struct member offsets.
-
-
Constructor Details
-
NkChart
Creates aNkChart
instance at the current position of the specifiedByteBuffer
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 Details
-
sizeof
public int sizeof()Description copied from class:Struct
Returnssizeof(struct)
. -
slot
public int slot()- Returns:
- the value of the
slot
field.
-
x
public float x()- Returns:
- the value of the
x
field.
-
y
public float y()- Returns:
- the value of the
y
field.
-
w
public float w()- Returns:
- the value of the
w
field.
-
h
public float h()- Returns:
- the value of the
h
field.
-
slots
- Returns:
- a
NkChartSlot
.Buffer view of theslots
field.
-
slots
- Returns:
- a
NkChartSlot
view of the struct at the specified index of theslots
field.
-
create
Returns a newNkChart
instance for the specified memory address. -
createSafe
-
create
Create aNkChart.Buffer
instance at the specified memory.- Parameters:
address
- the memory addresscapacity
- the buffer capacity
-
createSafe
-
nslot
public static int nslot(long struct) Unsafe version ofslot()
. -
nx
public static float nx(long struct) Unsafe version ofx()
. -
ny
public static float ny(long struct) Unsafe version ofy()
. -
nw
public static float nw(long struct) Unsafe version ofw()
. -
nh
public static float nh(long struct) Unsafe version ofh()
. -
nslots
Unsafe version ofslots()
. -
nslots
Unsafe version ofslots
.
-