public class MLoopTri_Store extends CFacade
Typical access is done via #BKE_mesh_runtime_looptri_ensure, #BKE_mesh_runtime_looptri_len.
Typical access is done via #BKE_mesh_runtime_looptri_ensure, #BKE_mesh_runtime_looptri_len.Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__array
Field descriptor (offset) for struct member 'array'.
|
static long[] |
__DNA__FIELD__array_wip
Field descriptor (offset) for struct member 'array_wip'.
|
static long[] |
__DNA__FIELD__len
Field descriptor (offset) for struct member 'len'.
|
static long[] |
__DNA__FIELD__len_alloc
Field descriptor (offset) for struct member 'len_alloc'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct MLoopTri_Store.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
|
MLoopTri_Store(long __address,
Block __block,
BlockTable __blockTable) |
protected |
MLoopTri_Store(MLoopTri_Store that) |
Modifier and Type | Method and Description |
---|---|
CPointer<MLoopTri_Store> |
__io__addressof()
Instantiates a pointer on this instance.
|
CPointer<MLoopTri> |
getArray_wip()
Get method for struct member 'array_wip'.
|
CPointer<MLoopTri> |
getArray()
Get method for struct member 'array'.
|
int |
getLen_alloc()
Get method for struct member 'len_alloc'.
|
int |
getLen()
Get method for struct member 'len'.
|
void |
setArray_wip(CPointer<MLoopTri> array_wip)
Set method for struct member 'array_wip'.
|
void |
setArray(CPointer<MLoopTri> array)
Set method for struct member 'array'.
|
void |
setLen_alloc(int len_alloc)
Set method for struct member 'len_alloc'.
|
void |
setLen(int len)
Set method for struct member 'len'.
|
__io__addressof, __io__addressof, __io__equals, __io__generic__copy, __io__generic__copy, __io__instanceof, __io__native__copy, __io__newInstance, __io__same__encoding, __io__sizeof, __io__sizeof, __io__subclassof
public static final int __DNA__SDNA_INDEX
It is required when allocating a new block to store data for MLoopTri_Store.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__array
WARNING! swapping between array (ready-to-be-used data) and array_wip (where data is actually computed) shall always be protected by same lock as one used for looptris computing.
This is how you get a reference on the corresponding field in the struct:
MLoopTri_Store mlooptri_store = ...; CPointer<Object> p = mlooptri_store.__dna__addressof(MLoopTri_Store.__DNA__FIELD__array); CPointer<CPointer<MLoopTri>> p_array = p.cast(new Class[]{CPointer.class, MLoopTri.class});
public static final long[] __DNA__FIELD__array_wip
This is how you get a reference on the corresponding field in the struct:
MLoopTri_Store mlooptri_store = ...; CPointer<Object> p = mlooptri_store.__dna__addressof(MLoopTri_Store.__DNA__FIELD__array_wip); CPointer<CPointer<MLoopTri>> p_array_wip = p.cast(new Class[]{CPointer.class, MLoopTri.class});
public static final long[] __DNA__FIELD__len
This is how you get a reference on the corresponding field in the struct:
MLoopTri_Store mlooptri_store = ...; CPointer<Object> p = mlooptri_store.__dna__addressof(MLoopTri_Store.__DNA__FIELD__len); CPointer<Integer> p_len = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__len_alloc
This is how you get a reference on the corresponding field in the struct:
MLoopTri_Store mlooptri_store = ...; CPointer<Object> p = mlooptri_store.__dna__addressof(MLoopTri_Store.__DNA__FIELD__len_alloc); CPointer<Integer> p_len_alloc = p.cast(new Class[]{Integer.class});
public MLoopTri_Store(long __address, Block __block, BlockTable __blockTable)
protected MLoopTri_Store(MLoopTri_Store that)
public CPointer<MLoopTri> getArray() throws java.io.IOException
WARNING! swapping between array (ready-to-be-used data) and array_wip (where data is actually computed) shall always be protected by same lock as one used for looptris computing.
java.io.IOException
__DNA__FIELD__array
public void setArray(CPointer<MLoopTri> array) throws java.io.IOException
WARNING! swapping between array (ready-to-be-used data) and array_wip (where data is actually computed) shall always be protected by same lock as one used for looptris computing.
java.io.IOException
__DNA__FIELD__array
public CPointer<MLoopTri> getArray_wip() throws java.io.IOException
java.io.IOException
__DNA__FIELD__array_wip
public void setArray_wip(CPointer<MLoopTri> array_wip) throws java.io.IOException
java.io.IOException
__DNA__FIELD__array_wip
public int getLen() throws java.io.IOException
java.io.IOException
__DNA__FIELD__len
public void setLen(int len) throws java.io.IOException
java.io.IOException
__DNA__FIELD__len
public int getLen_alloc() throws java.io.IOException
java.io.IOException
__DNA__FIELD__len_alloc
public void setLen_alloc(int len_alloc) throws java.io.IOException
java.io.IOException
__DNA__FIELD__len_alloc
public CPointer<MLoopTri_Store> __io__addressof()