Class FluidModifierData
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.FluidModifierData
-
public class FluidModifierData extends CFacade
Generated facet for DNA struct type 'FluidModifierData'.Class Documentation
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD__domain
Field descriptor (offset) for struct member 'domain'.static long[]
__DNA__FIELD__effector
Field descriptor (offset) for struct member 'effector'.static long[]
__DNA__FIELD__flow
Field descriptor (offset) for struct member 'flow'.static long[]
__DNA__FIELD__modifier
Field descriptor (offset) for struct member 'modifier'.static long[]
__DNA__FIELD__time
Field descriptor (offset) for struct member 'time'.static long[]
__DNA__FIELD__type
Field descriptor (offset) for struct member 'type'.static int
__DNA__SDNA_INDEX
This is the sdna index of the struct FluidModifierData.-
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 FluidModifierData(long __address, Block __block, BlockTable __blockTable)
protected
FluidModifierData(FluidModifierData that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<FluidModifierData>
__io__addressof()
Instantiates a pointer on this instance.CPointer<FluidDomainSettings>
getDomain()
Get method for struct member 'domain'.CPointer<FluidEffectorSettings>
getEffector()
Get method for struct member 'effector'.CPointer<FluidFlowSettings>
getFlow()
Get method for struct member 'flow'.ModifierData
getModifier()
Get method for struct member 'modifier'.float
getTime()
Get method for struct member 'time'.int
getType()
Get method for struct member 'type'.void
setDomain(CPointer<FluidDomainSettings> domain)
Set method for struct member 'domain'.void
setEffector(CPointer<FluidEffectorSettings> effector)
Set method for struct member 'effector'.void
setFlow(CPointer<FluidFlowSettings> flow)
Set method for struct member 'flow'.void
setModifier(ModifierData modifier)
Set method for struct member 'modifier'.void
setTime(float time)
Set method for struct member 'time'.void
setType(int type)
Set method for struct member 'type'.-
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 FluidModifierData.It is required when allocating a new block to store data for FluidModifierData.
- See Also:
StructDNA
,BlockTable
, Constant Field Values
-
__DNA__FIELD__modifier
public static final long[] __DNA__FIELD__modifier
Field descriptor (offset) for struct member 'modifier'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FluidModifierData fluidmodifierdata = ...; CPointer<Object> p = fluidmodifierdata.__dna__addressof(FluidModifierData.__DNA__FIELD__modifier); CPointer<ModifierData> p_modifier = p.cast(new Class[]{ModifierData.class});
Metadata
- Field: 'modifier'
- Signature: 'ModifierData'
- Actual Size (32bit/64bit): 100/120
-
__DNA__FIELD__domain
public static final long[] __DNA__FIELD__domain
Field descriptor (offset) for struct member 'domain'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FluidModifierData fluidmodifierdata = ...; CPointer<Object> p = fluidmodifierdata.__dna__addressof(FluidModifierData.__DNA__FIELD__domain); CPointer<CPointer<FluidDomainSettings>> p_domain = p.cast(new Class[]{CPointer.class, FluidDomainSettings.class});
Metadata
- Field: 'domain'
- Signature: 'FluidDomainSettings*'
- Actual Size (32bit/64bit): 4/8
-
__DNA__FIELD__flow
public static final long[] __DNA__FIELD__flow
Field descriptor (offset) for struct member 'flow'.Field Documentation
Blender Source Code
Inflow, outflow, smoke objects.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FluidModifierData fluidmodifierdata = ...; CPointer<Object> p = fluidmodifierdata.__dna__addressof(FluidModifierData.__DNA__FIELD__flow); CPointer<CPointer<FluidFlowSettings>> p_flow = p.cast(new Class[]{CPointer.class, FluidFlowSettings.class});
Metadata
- Field: 'flow'
- Signature: 'FluidFlowSettings*'
- Actual Size (32bit/64bit): 4/8
-
__DNA__FIELD__effector
public static final long[] __DNA__FIELD__effector
Field descriptor (offset) for struct member 'effector'.Field Documentation
Blender Source Code
Effector objects (collision, guiding).
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FluidModifierData fluidmodifierdata = ...; CPointer<Object> p = fluidmodifierdata.__dna__addressof(FluidModifierData.__DNA__FIELD__effector); CPointer<CPointer<FluidEffectorSettings>> p_effector = p.cast(new Class[]{CPointer.class, FluidEffectorSettings.class});
Metadata
- Field: 'effector'
- Signature: 'FluidEffectorSettings*'
- Actual Size (32bit/64bit): 4/8
-
__DNA__FIELD__time
public static final long[] __DNA__FIELD__time
Field descriptor (offset) for struct member 'time'.Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FluidModifierData fluidmodifierdata = ...; CPointer<Object> p = fluidmodifierdata.__dna__addressof(FluidModifierData.__DNA__FIELD__time); CPointer<Float> p_time = p.cast(new Class[]{Float.class});
Metadata
- Field: 'time'
- Signature: 'float'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD__type
public static final long[] __DNA__FIELD__type
Field descriptor (offset) for struct member 'type'.Field Documentation
Blender Source Code
Domain, inflow, outflow, ....
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
FluidModifierData fluidmodifierdata = ...; CPointer<Object> p = fluidmodifierdata.__dna__addressof(FluidModifierData.__DNA__FIELD__type); CPointer<Integer> p_type = p.cast(new Class[]{Integer.class});
Metadata
- Field: 'type'
- Signature: 'int'
- Actual Size (32bit/64bit): 4/4
-
-
Constructor Detail
-
FluidModifierData
public FluidModifierData(long __address, Block __block, BlockTable __blockTable)
-
FluidModifierData
protected FluidModifierData(FluidModifierData that)
-
-
Method Detail
-
getModifier
public ModifierData getModifier() throws java.io.IOException
Get method for struct member 'modifier'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__modifier
-
setModifier
public void setModifier(ModifierData modifier) throws java.io.IOException
Set method for struct member 'modifier'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__modifier
-
getDomain
public CPointer<FluidDomainSettings> getDomain() throws java.io.IOException
Get method for struct member 'domain'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__domain
-
setDomain
public void setDomain(CPointer<FluidDomainSettings> domain) throws java.io.IOException
Set method for struct member 'domain'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__domain
-
getFlow
public CPointer<FluidFlowSettings> getFlow() throws java.io.IOException
Get method for struct member 'flow'.Field Documentation
Blender Source Code
Inflow, outflow, smoke objects.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__flow
-
setFlow
public void setFlow(CPointer<FluidFlowSettings> flow) throws java.io.IOException
Set method for struct member 'flow'.Field Documentation
Blender Source Code
Inflow, outflow, smoke objects.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__flow
-
getEffector
public CPointer<FluidEffectorSettings> getEffector() throws java.io.IOException
Get method for struct member 'effector'.Field Documentation
Blender Source Code
Effector objects (collision, guiding).
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__effector
-
setEffector
public void setEffector(CPointer<FluidEffectorSettings> effector) throws java.io.IOException
Set method for struct member 'effector'.Field Documentation
Blender Source Code
Effector objects (collision, guiding).
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__effector
-
getTime
public float getTime() throws java.io.IOException
Get method for struct member 'time'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__time
-
setTime
public void setTime(float time) throws java.io.IOException
Set method for struct member 'time'.- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__time
-
getType
public int getType() throws java.io.IOException
Get method for struct member 'type'.Field Documentation
Blender Source Code
Domain, inflow, outflow, ....
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__type
-
setType
public void setType(int type) throws java.io.IOException
Set method for struct member 'type'.Field Documentation
Blender Source Code
Domain, inflow, outflow, ....
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__type
-
__io__addressof
public CPointer<FluidModifierData> __io__addressof()
Instantiates a pointer on this instance.
-
-