public class GP_Interpolate_Settings extends CFacade
Settings for GP Interpolation Operators
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD___pad
Field descriptor (offset) for struct member '_pad'.
|
static long[] |
__DNA__FIELD__amplitude
Field descriptor (offset) for struct member 'amplitude'.
|
static long[] |
__DNA__FIELD__back
Field descriptor (offset) for struct member 'back'.
|
static long[] |
__DNA__FIELD__custom_ipo
Field descriptor (offset) for struct member 'custom_ipo'.
|
static long[] |
__DNA__FIELD__easing
Field descriptor (offset) for struct member 'easing'.
|
static long[] |
__DNA__FIELD__flag
Field descriptor (offset) for struct member 'flag'.
|
static long[] |
__DNA__FIELD__period
Field descriptor (offset) for struct member 'period'.
|
static long[] |
__DNA__FIELD__step
Field descriptor (offset) for struct member 'step'.
|
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 GP_Interpolate_Settings.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
protected |
GP_Interpolate_Settings(GP_Interpolate_Settings that) |
|
GP_Interpolate_Settings(long __address,
Block __block,
BlockTable __blockTable) |
Modifier and Type | Method and Description |
---|---|
CPointer<GP_Interpolate_Settings> |
__io__addressof()
Instantiates a pointer on this instance.
|
CArrayFacade<java.lang.Byte> |
get_pad()
Get method for struct member '_pad'.
|
float |
getAmplitude()
Get method for struct member 'amplitude'.
|
float |
getBack()
Get method for struct member 'back'.
|
CPointer<CurveMapping> |
getCustom_ipo()
Get method for struct member 'custom_ipo'.
|
byte |
getEasing()
Get method for struct member 'easing'.
|
short |
getFlag()
Get method for struct member 'flag'.
|
float |
getPeriod()
Get method for struct member 'period'.
|
int |
getStep()
Get method for struct member 'step'.
|
byte |
getType()
Get method for struct member 'type'.
|
void |
set_pad(CArrayFacade<java.lang.Byte> _pad)
Set method for struct member '_pad'.
|
void |
setAmplitude(float amplitude)
Set method for struct member 'amplitude'.
|
void |
setBack(float back)
Set method for struct member 'back'.
|
void |
setCustom_ipo(CPointer<CurveMapping> custom_ipo)
Set method for struct member 'custom_ipo'.
|
void |
setEasing(byte easing)
Set method for struct member 'easing'.
|
void |
setFlag(short flag)
Set method for struct member 'flag'.
|
void |
setPeriod(float period)
Set method for struct member 'period'.
|
void |
setStep(int step)
Set method for struct member 'step'.
|
void |
setType(byte 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 GP_Interpolate_Settings.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__flag
eGP_Interpolate_SettingsFlag
.
This is how you get a reference on the corresponding field in the struct:
GP_Interpolate_Settings gp_interpolate_settings = ...; CPointer<Object> p = gp_interpolate_settings.__dna__addressof(GP_Interpolate_Settings.__DNA__FIELD__flag); CPointer<Short> p_flag = p.cast(new Class[]{Short.class});
public static final long[] __DNA__FIELD__type
eGP_Interpolate_Type
- Interpolation Mode.
This is how you get a reference on the corresponding field in the struct:
GP_Interpolate_Settings gp_interpolate_settings = ...; CPointer<Object> p = gp_interpolate_settings.__dna__addressof(GP_Interpolate_Settings.__DNA__FIELD__type); CPointer<Byte> p_type = p.cast(new Class[]{Byte.class});
public static final long[] __DNA__FIELD__easing
eBezTriple_Easing
- Easing mode (if easing equation used).
This is how you get a reference on the corresponding field in the struct:
GP_Interpolate_Settings gp_interpolate_settings = ...; CPointer<Object> p = gp_interpolate_settings.__dna__addressof(GP_Interpolate_Settings.__DNA__FIELD__easing); CPointer<Byte> p_easing = p.cast(new Class[]{Byte.class});
public static final long[] __DNA__FIELD__back
BEZT_IPO_BACK.
This is how you get a reference on the corresponding field in the struct:
GP_Interpolate_Settings gp_interpolate_settings = ...; CPointer<Object> p = gp_interpolate_settings.__dna__addressof(GP_Interpolate_Settings.__DNA__FIELD__back); CPointer<Float> p_back = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__amplitude
BEZT_IPO_ELASTIC.
This is how you get a reference on the corresponding field in the struct:
GP_Interpolate_Settings gp_interpolate_settings = ...; CPointer<Object> p = gp_interpolate_settings.__dna__addressof(GP_Interpolate_Settings.__DNA__FIELD__amplitude); CPointer<Float> p_amplitude = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__period
This is how you get a reference on the corresponding field in the struct:
GP_Interpolate_Settings gp_interpolate_settings = ...; CPointer<Object> p = gp_interpolate_settings.__dna__addressof(GP_Interpolate_Settings.__DNA__FIELD__period); CPointer<Float> p_period = p.cast(new Class[]{Float.class});
public static final long[] __DNA__FIELD__step
Step between sequence interpolated frames.
This is how you get a reference on the corresponding field in the struct:
GP_Interpolate_Settings gp_interpolate_settings = ...; CPointer<Object> p = gp_interpolate_settings.__dna__addressof(GP_Interpolate_Settings.__DNA__FIELD__step); CPointer<Integer> p_step = p.cast(new Class[]{Integer.class});
public static final long[] __DNA__FIELD___pad
This is how you get a reference on the corresponding field in the struct:
GP_Interpolate_Settings gp_interpolate_settings = ...; CPointer<Object> p = gp_interpolate_settings.__dna__addressof(GP_Interpolate_Settings.__DNA__FIELD___pad); CPointer<CArrayFacade<Byte>> p__pad = p.cast(new Class[]{CArrayFacade.class, Byte.class});
public static final long[] __DNA__FIELD__custom_ipo
Custom interpolation curve (for use with GP_IPO_CURVEMAP).
This is how you get a reference on the corresponding field in the struct:
GP_Interpolate_Settings gp_interpolate_settings = ...; CPointer<Object> p = gp_interpolate_settings.__dna__addressof(GP_Interpolate_Settings.__DNA__FIELD__custom_ipo); CPointer<CPointer<CurveMapping>> p_custom_ipo = p.cast(new Class[]{CPointer.class, CurveMapping.class});
public GP_Interpolate_Settings(long __address, Block __block, BlockTable __blockTable)
protected GP_Interpolate_Settings(GP_Interpolate_Settings that)
public short getFlag() throws java.io.IOException
eGP_Interpolate_SettingsFlag
.
java.io.IOException
__DNA__FIELD__flag
public void setFlag(short flag) throws java.io.IOException
eGP_Interpolate_SettingsFlag
.
java.io.IOException
__DNA__FIELD__flag
public byte getType() throws java.io.IOException
eGP_Interpolate_Type
- Interpolation Mode.
java.io.IOException
__DNA__FIELD__type
public void setType(byte type) throws java.io.IOException
eGP_Interpolate_Type
- Interpolation Mode.
java.io.IOException
__DNA__FIELD__type
public byte getEasing() throws java.io.IOException
eBezTriple_Easing
- Easing mode (if easing equation used).
java.io.IOException
__DNA__FIELD__easing
public void setEasing(byte easing) throws java.io.IOException
eBezTriple_Easing
- Easing mode (if easing equation used).
java.io.IOException
__DNA__FIELD__easing
public float getBack() throws java.io.IOException
BEZT_IPO_BACK.
java.io.IOException
__DNA__FIELD__back
public void setBack(float back) throws java.io.IOException
BEZT_IPO_BACK.
java.io.IOException
__DNA__FIELD__back
public float getAmplitude() throws java.io.IOException
BEZT_IPO_ELASTIC.
java.io.IOException
__DNA__FIELD__amplitude
public void setAmplitude(float amplitude) throws java.io.IOException
BEZT_IPO_ELASTIC.
java.io.IOException
__DNA__FIELD__amplitude
public float getPeriod() throws java.io.IOException
java.io.IOException
__DNA__FIELD__period
public void setPeriod(float period) throws java.io.IOException
java.io.IOException
__DNA__FIELD__period
public int getStep() throws java.io.IOException
Step between sequence interpolated frames.
java.io.IOException
__DNA__FIELD__step
public void setStep(int step) throws java.io.IOException
Step between sequence interpolated frames.
java.io.IOException
__DNA__FIELD__step
public CArrayFacade<java.lang.Byte> get_pad() throws java.io.IOException
java.io.IOException
__DNA__FIELD___pad
public void set_pad(CArrayFacade<java.lang.Byte> _pad) throws java.io.IOException
java.io.IOException
__DNA__FIELD___pad
public CPointer<CurveMapping> getCustom_ipo() throws java.io.IOException
Custom interpolation curve (for use with GP_IPO_CURVEMAP).
java.io.IOException
__DNA__FIELD__custom_ipo
public void setCustom_ipo(CPointer<CurveMapping> custom_ipo) throws java.io.IOException
Custom interpolation curve (for use with GP_IPO_CURVEMAP).
java.io.IOException
__DNA__FIELD__custom_ipo
public CPointer<GP_Interpolate_Settings> __io__addressof()