public class SpaceTimeCache extends CFacade
Timeline =============================================== Pointcache drawing data Only store the data array in the cache to avoid constant reallocation. No need to store when saved.
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__array
Field descriptor (offset) for struct member 'array'.
|
static long[] |
__DNA__FIELD__next
Field descriptor (offset) for struct member 'next'.
|
static long[] |
__DNA__FIELD__prev
Field descriptor (offset) for struct member 'prev'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct SpaceTimeCache.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
|
SpaceTimeCache(long __address,
Block __block,
BlockTable __blockTable) |
protected |
SpaceTimeCache(SpaceTimeCache that) |
Modifier and Type | Method and Description |
---|---|
CPointer<SpaceTimeCache> |
__io__addressof()
Instantiates a pointer on this instance.
|
CPointer<java.lang.Float> |
getArray()
Get method for struct member 'array'.
|
CPointer<SpaceTimeCache> |
getNext()
Get method for struct member 'next'.
|
CPointer<SpaceTimeCache> |
getPrev()
Get method for struct member 'prev'.
|
void |
setArray(CPointer<java.lang.Float> array)
Set method for struct member 'array'.
|
void |
setNext(CPointer<SpaceTimeCache> next)
Set method for struct member 'next'.
|
void |
setPrev(CPointer<SpaceTimeCache> prev)
Set method for struct member 'prev'.
|
__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 SpaceTimeCache.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__next
This is how you get a reference on the corresponding field in the struct:
SpaceTimeCache spacetimecache = ...; CPointer<Object> p = spacetimecache.__dna__addressof(SpaceTimeCache.__DNA__FIELD__next); CPointer<CPointer<SpaceTimeCache>> p_next = p.cast(new Class[]{CPointer.class, SpaceTimeCache.class});
public static final long[] __DNA__FIELD__prev
This is how you get a reference on the corresponding field in the struct:
SpaceTimeCache spacetimecache = ...; CPointer<Object> p = spacetimecache.__dna__addressof(SpaceTimeCache.__DNA__FIELD__prev); CPointer<CPointer<SpaceTimeCache>> p_prev = p.cast(new Class[]{CPointer.class, SpaceTimeCache.class});
public static final long[] __DNA__FIELD__array
This is how you get a reference on the corresponding field in the struct:
SpaceTimeCache spacetimecache = ...; CPointer<Object> p = spacetimecache.__dna__addressof(SpaceTimeCache.__DNA__FIELD__array); CPointer<CPointer<Float>> p_array = p.cast(new Class[]{CPointer.class, Float.class});
public SpaceTimeCache(long __address, Block __block, BlockTable __blockTable)
protected SpaceTimeCache(SpaceTimeCache that)
public CPointer<SpaceTimeCache> getNext() throws java.io.IOException
java.io.IOException
__DNA__FIELD__next
public void setNext(CPointer<SpaceTimeCache> next) throws java.io.IOException
java.io.IOException
__DNA__FIELD__next
public CPointer<SpaceTimeCache> getPrev() throws java.io.IOException
java.io.IOException
__DNA__FIELD__prev
public void setPrev(CPointer<SpaceTimeCache> prev) throws java.io.IOException
java.io.IOException
__DNA__FIELD__prev
public CPointer<java.lang.Float> getArray() throws java.io.IOException
java.io.IOException
__DNA__FIELD__array
public void setArray(CPointer<java.lang.Float> array) throws java.io.IOException
java.io.IOException
__DNA__FIELD__array
public CPointer<SpaceTimeCache> __io__addressof()