Package org.lwjgl.nuklear
Class NkChart
- All Implemented Interfaces:
Pointer
struct nk_chart {
int slot;
float x;
float y;
float w;
float h;
struct nk_chart_slot slots[NK_CHART_MAX_SLOT];
}-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class org.lwjgl.system.Struct
Struct.StructValidationNested classes/interfaces inherited from interface org.lwjgl.system.Pointer
Pointer.Default -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe struct alignment in bytes.static final intThe struct member offsets.static final intThe struct size in bytes.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe 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 aNkChartinstance at the current position of the specifiedByteBuffercontainer. -
Method Summary
Modifier and TypeMethodDescriptionstatic NkChartcreate(long address) Returns a newNkChartinstance for the specified memory address.static NkChart.Buffercreate(long address, int capacity) Create aNkChart.Bufferinstance at the specified memory.static @Nullable NkChartcreateSafe(long address) static @Nullable NkChart.BuffercreateSafe(long address, int capacity) floath()static floatnh(long struct) Unsafe version ofh().static intnslot(long struct) Unsafe version ofslot().static NkChartSlot.Buffernslots(long struct) Unsafe version ofslots().static NkChartSlotnslots(long struct, int index) Unsafe version ofslots.static floatnw(long struct) Unsafe version ofw().static floatnx(long struct) Unsafe version ofx().static floatny(long struct) Unsafe version ofy().intsizeof()Returnssizeof(struct).intslot()slots()slots(int index) floatw()floatx()floaty()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 aNkChartinstance at the current position of the specifiedByteBuffercontainer. 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:StructReturnssizeof(struct). -
slot
public int slot()- Returns:
- the value of the
slotfield.
-
x
public float x()- Returns:
- the value of the
xfield.
-
y
public float y()- Returns:
- the value of the
yfield.
-
w
public float w()- Returns:
- the value of the
wfield.
-
h
public float h()- Returns:
- the value of the
hfield.
-
slots
- Returns:
- a
NkChartSlot.Buffer view of theslotsfield.
-
slots
- Returns:
- a
NkChartSlotview of the struct at the specified index of theslotsfield.
-
create
Returns a newNkChartinstance for the specified memory address. -
createSafe
-
create
Create aNkChart.Bufferinstance 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.
-