public class NodeTexSky extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__base
Field descriptor (offset) for struct member 'base'.
|
static long[] |
__DNA__FIELD__ground_albedo
Field descriptor (offset) for struct member 'ground_albedo'.
|
static long[] |
__DNA__FIELD__sky_model
Field descriptor (offset) for struct member 'sky_model'.
|
static long[] |
__DNA__FIELD__sun_direction
Field descriptor (offset) for struct member 'sun_direction'.
|
static long[] |
__DNA__FIELD__turbidity
Field descriptor (offset) for struct member 'turbidity'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct NodeTexSky.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
|
NodeTexSky(long __address,
Block __block,
BlockTable __blockTable) |
protected |
NodeTexSky(NodeTexSky that) |
Modifier and Type | Method and Description |
---|---|
CPointer<NodeTexSky> |
__io__addressof()
Instantiates a pointer on this instance.
|
NodeTexBase |
getBase()
Get method for struct member 'base'.
|
float |
getGround_albedo()
Get method for struct member 'ground_albedo'.
|
int |
getSky_model()
Get method for struct member 'sky_model'.
|
CArrayFacade<java.lang.Float> |
getSun_direction()
Get method for struct member 'sun_direction'.
|
float |
getTurbidity()
Get method for struct member 'turbidity'.
|
void |
setBase(NodeTexBase base)
Set method for struct member 'base'.
|
void |
setGround_albedo(float ground_albedo)
Set method for struct member 'ground_albedo'.
|
void |
setSky_model(int sky_model)
Set method for struct member 'sky_model'.
|
void |
setSun_direction(CArrayFacade<java.lang.Float> sun_direction)
Set method for struct member 'sun_direction'.
|
void |
setTurbidity(float turbidity)
Set method for struct member 'turbidity'.
|
__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 NodeTexSky.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__base
This is how you get a reference on the corresponding field in the struct:
NodeTexSky nodetexsky = ...; CPointer<Object> p = nodetexsky.__dna__addressof(NodeTexSky.__DNA__FIELD__base); CPointer<NodeTexBase> p_base = p.cast(new Class[]{NodeTexBase.class});
public static final long[] __DNA__FIELD__sky_model
This is how you get a reference on the corresponding field in the struct:
NodeTexSky nodetexsky = ...; CPointer<Object> p = nodetexsky.__dna__addressof(NodeTexSky.__DNA__FIELD__sky_model); CPointer<Integer> p_sky_model = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD__sun_direction
This is how you get a reference on the corresponding field in the struct:
NodeTexSky nodetexsky = ...; CPointer<Object> p = nodetexsky.__dna__addressof(NodeTexSky.__DNA__FIELD__sun_direction); CPointer<CArrayFacade<Float>> p_sun_direction = p.cast(new Class[]{CArrayFacade.class, Float.class});
public static final long[] __DNA__FIELD__turbidity
This is how you get a reference on the corresponding field in the struct:
NodeTexSky nodetexsky = ...; CPointer<Object> p = nodetexsky.__dna__addressof(NodeTexSky.__DNA__FIELD__turbidity); CPointer<Float> p_turbidity = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__ground_albedo
This is how you get a reference on the corresponding field in the struct:
NodeTexSky nodetexsky = ...; CPointer<Object> p = nodetexsky.__dna__addressof(NodeTexSky.__DNA__FIELD__ground_albedo); CPointer<Float> p_ground_albedo = p.cast(new Class[]{Float.class});
public NodeTexSky(long __address, Block __block, BlockTable __blockTable)
protected NodeTexSky(NodeTexSky that)
public NodeTexBase getBase() throws java.io.IOException
java.io.IOException
__DNA__FIELD__base
public void setBase(NodeTexBase base) throws java.io.IOException
java.io.IOException
__DNA__FIELD__base
public int getSky_model() throws java.io.IOException
java.io.IOException
__DNA__FIELD__sky_model
public void setSky_model(int sky_model) throws java.io.IOException
java.io.IOException
__DNA__FIELD__sky_model
public CArrayFacade<java.lang.Float> getSun_direction() throws java.io.IOException
java.io.IOException
__DNA__FIELD__sun_direction
public void setSun_direction(CArrayFacade<java.lang.Float> sun_direction) throws java.io.IOException
java.io.IOException
__DNA__FIELD__sun_direction
public float getTurbidity() throws java.io.IOException
java.io.IOException
__DNA__FIELD__turbidity
public void setTurbidity(float turbidity) throws java.io.IOException
java.io.IOException
__DNA__FIELD__turbidity
public float getGround_albedo() throws java.io.IOException
java.io.IOException
__DNA__FIELD__ground_albedo
public void setGround_albedo(float ground_albedo) throws java.io.IOException
java.io.IOException
__DNA__FIELD__ground_albedo
public CPointer<NodeTexSky> __io__addressof()