Class bGPDframe_Runtime
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.bGPDframe_Runtime
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD__frameid
Field descriptor (offset) for struct member 'frameid'.static long[]
__DNA__FIELD__gpf_orig
Field descriptor (offset) for struct member 'gpf_orig'.static long[]
__DNA__FIELD__onion_id
Field descriptor (offset) for struct member 'onion_id'.static int
__DNA__SDNA_INDEX
This is the sdna index of the struct bGPDframe_Runtime.-
Fields inherited from class org.cakelab.blender.nio.CFacade
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
-
-
Constructor Summary
Constructors Modifier Constructor Description bGPDframe_Runtime(long __address, Block __block, BlockTable __blockTable)
protected
bGPDframe_Runtime(bGPDframe_Runtime that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<bGPDframe_Runtime>
__io__addressof()
Instantiates a pointer on this instance.int
getFrameid()
Get method for struct member 'frameid'.CPointer<bGPDframe>
getGpf_orig()
Get method for struct member 'gpf_orig'.int
getOnion_id()
Get method for struct member 'onion_id'.void
setFrameid(int frameid)
Set method for struct member 'frameid'.void
setGpf_orig(CPointer<bGPDframe> gpf_orig)
Set method for struct member 'gpf_orig'.void
setOnion_id(int onion_id)
Set method for struct member 'onion_id'.-
Methods inherited from class org.cakelab.blender.nio.CFacade
__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, equals, hashCode
-
-
-
-
Field Detail
-
__DNA__SDNA_INDEX
public static final int __DNA__SDNA_INDEX
This is the sdna index of the struct bGPDframe_Runtime.It is required when allocating a new block to store data for bGPDframe_Runtime.
- See Also:
StructDNA
,BlockTable
, Constant Field Values
-
__DNA__FIELD__frameid
public static final long[] __DNA__FIELD__frameid
Field descriptor (offset) for struct member 'frameid'.Field Documentation
Blender Source Code
Index of this frame in the listbase of frames.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
bGPDframe_Runtime bgpdframe_runtime = ...; CPointer<Object> p = bgpdframe_runtime.__dna__addressof(bGPDframe_Runtime.__DNA__FIELD__frameid); CPointer<Integer> p_frameid = p.cast(new Class[]{Integer.class});
Metadata
- Field: 'frameid'
- Signature: 'int'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD__onion_id
public static final long[] __DNA__FIELD__onion_id
Field descriptor (offset) for struct member 'onion_id'.Field Documentation
Blender Source Code
Onion offset from active frame. 0 if not onion. INT_MAX to bypass frame.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
bGPDframe_Runtime bgpdframe_runtime = ...; CPointer<Object> p = bgpdframe_runtime.__dna__addressof(bGPDframe_Runtime.__DNA__FIELD__onion_id); CPointer<Integer> p_onion_id = p.cast(new Class[]{Integer.class});
Metadata
- Field: 'onion_id'
- Signature: 'int'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD__gpf_orig
public static final long[] __DNA__FIELD__gpf_orig
Field descriptor (offset) for struct member 'gpf_orig'.Field Documentation
Blender Source Code
Original frame (used to dereference evaluated data)
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
bGPDframe_Runtime bgpdframe_runtime = ...; CPointer<Object> p = bgpdframe_runtime.__dna__addressof(bGPDframe_Runtime.__DNA__FIELD__gpf_orig); CPointer<CPointer<bGPDframe>> p_gpf_orig = p.cast(new Class[]{CPointer.class, bGPDframe.class});
Metadata
- Field: 'gpf_orig'
- Signature: 'bGPDframe*'
- Actual Size (32bit/64bit): 4/8
-
-
Constructor Detail
-
bGPDframe_Runtime
public bGPDframe_Runtime(long __address, Block __block, BlockTable __blockTable)
-
bGPDframe_Runtime
protected bGPDframe_Runtime(bGPDframe_Runtime that)
-
-
Method Detail
-
getFrameid
public int getFrameid() throws java.io.IOException
Get method for struct member 'frameid'.Field Documentation
Blender Source Code
Index of this frame in the listbase of frames.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__frameid
-
setFrameid
public void setFrameid(int frameid) throws java.io.IOException
Set method for struct member 'frameid'.Field Documentation
Blender Source Code
Index of this frame in the listbase of frames.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__frameid
-
getOnion_id
public int getOnion_id() throws java.io.IOException
Get method for struct member 'onion_id'.Field Documentation
Blender Source Code
Onion offset from active frame. 0 if not onion. INT_MAX to bypass frame.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__onion_id
-
setOnion_id
public void setOnion_id(int onion_id) throws java.io.IOException
Set method for struct member 'onion_id'.Field Documentation
Blender Source Code
Onion offset from active frame. 0 if not onion. INT_MAX to bypass frame.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__onion_id
-
getGpf_orig
public CPointer<bGPDframe> getGpf_orig() throws java.io.IOException
Get method for struct member 'gpf_orig'.Field Documentation
Blender Source Code
Original frame (used to dereference evaluated data)
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__gpf_orig
-
setGpf_orig
public void setGpf_orig(CPointer<bGPDframe> gpf_orig) throws java.io.IOException
Set method for struct member 'gpf_orig'.Field Documentation
Blender Source Code
Original frame (used to dereference evaluated data)
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__gpf_orig
-
__io__addressof
public CPointer<bGPDframe_Runtime> __io__addressof()
Instantiates a pointer on this instance.
-
-