public class FluidModifierData extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD___pad1
Field descriptor (offset) for struct member '_pad1'.
|
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.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
protected |
FluidModifierData(FluidModifierData that) |
|
FluidModifierData(long __address,
Block __block,
BlockTable __blockTable) |
Modifier and Type | Method and Description |
---|---|
CPointer<FluidModifierData> |
__io__addressof()
Instantiates a pointer on this instance.
|
CPointer<java.lang.Object> |
get_pad1()
Get method for struct member '_pad1'.
|
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 |
set_pad1(CPointer<java.lang.Object> _pad1)
Set method for struct member '_pad1'.
|
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'.
|
__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 FluidModifierData.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__modifier
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});
public static final long[] __DNA__FIELD__domain
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});
public static final long[] __DNA__FIELD__flow
Inflow, outflow, smoke objects.
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});
public static final long[] __DNA__FIELD__effector
Effector objects (collision, guiding).
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});
public static final long[] __DNA__FIELD__time
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});
public static final long[] __DNA__FIELD__type
Domain, inflow, outflow, ....
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});
public static final long[] __DNA__FIELD___pad1
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___pad1); CPointer<CPointer<Object>> p__pad1 = p.cast(new Class[]{CPointer.class, Object.class});
public FluidModifierData(long __address, Block __block, BlockTable __blockTable)
protected FluidModifierData(FluidModifierData that)
public ModifierData getModifier() throws java.io.IOException
java.io.IOException
__DNA__FIELD__modifier
public void setModifier(ModifierData modifier) throws java.io.IOException
java.io.IOException
__DNA__FIELD__modifier
public CPointer<FluidDomainSettings> getDomain() throws java.io.IOException
java.io.IOException
__DNA__FIELD__domain
public void setDomain(CPointer<FluidDomainSettings> domain) throws java.io.IOException
java.io.IOException
__DNA__FIELD__domain
public CPointer<FluidFlowSettings> getFlow() throws java.io.IOException
Inflow, outflow, smoke objects.
java.io.IOException
__DNA__FIELD__flow
public void setFlow(CPointer<FluidFlowSettings> flow) throws java.io.IOException
Inflow, outflow, smoke objects.
java.io.IOException
__DNA__FIELD__flow
public CPointer<FluidEffectorSettings> getEffector() throws java.io.IOException
Effector objects (collision, guiding).
java.io.IOException
__DNA__FIELD__effector
public void setEffector(CPointer<FluidEffectorSettings> effector) throws java.io.IOException
Effector objects (collision, guiding).
java.io.IOException
__DNA__FIELD__effector
public float getTime() throws java.io.IOException
java.io.IOException
__DNA__FIELD__time
public void setTime(float time) throws java.io.IOException
java.io.IOException
__DNA__FIELD__time
public int getType() throws java.io.IOException
Domain, inflow, outflow, ....
java.io.IOException
__DNA__FIELD__type
public void setType(int type) throws java.io.IOException
Domain, inflow, outflow, ....
java.io.IOException
__DNA__FIELD__type
public CPointer<java.lang.Object> get_pad1() throws java.io.IOException
java.io.IOException
__DNA__FIELD___pad1
public void set_pad1(CPointer<java.lang.Object> _pad1) throws java.io.IOException
java.io.IOException
__DNA__FIELD___pad1
public CPointer<FluidModifierData> __io__addressof()