Class bClampToConstraint
- java.lang.Object
-
- org.cakelab.blender.nio.CFacade
-
- org.blender.dna.bClampToConstraint
-
public class bClampToConstraint extends CFacade
Generated facet for DNA struct type 'bClampToConstraint'.Class Documentation
Blender Source Code
Clamp-To Constraint
-
-
Field Summary
Fields Modifier and Type Field Description static long[]
__DNA__FIELD__flag
Field descriptor (offset) for struct member 'flag'.static long[]
__DNA__FIELD__flag2
Field descriptor (offset) for struct member 'flag2'.static long[]
__DNA__FIELD__tar
Field descriptor (offset) for struct member 'tar'.static int
__DNA__SDNA_INDEX
This is the sdna index of the struct bClampToConstraint.-
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 bClampToConstraint(long __address, Block __block, BlockTable __blockTable)
protected
bClampToConstraint(bClampToConstraint that)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CPointer<bClampToConstraint>
__io__addressof()
Instantiates a pointer on this instance.int
getFlag()
Get method for struct member 'flag'.int
getFlag2()
Get method for struct member 'flag2'.CPointer<BlenderObject>
getTar()
Get method for struct member 'tar'.void
setFlag(int flag)
Set method for struct member 'flag'.void
setFlag2(int flag2)
Set method for struct member 'flag2'.void
setTar(CPointer<BlenderObject> tar)
Set method for struct member 'tar'.-
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 bClampToConstraint.It is required when allocating a new block to store data for bClampToConstraint.
- See Also:
StructDNA
,BlockTable
, Constant Field Values
-
__DNA__FIELD__tar
public static final long[] __DNA__FIELD__tar
Field descriptor (offset) for struct member 'tar'.Field Documentation
Blender Source Code
'target' must be a curve.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
bClampToConstraint bclamptoconstraint = ...; CPointer<Object> p = bclamptoconstraint.__dna__addressof(bClampToConstraint.__DNA__FIELD__tar); CPointer<CPointer<BlenderObject>> p_tar = p.cast(new Class[]{CPointer.class, BlenderObject.class});
Metadata
- Field: 'tar'
- Signature: 'Object*'
- Actual Size (32bit/64bit): 4/8
-
__DNA__FIELD__flag
public static final long[] __DNA__FIELD__flag
Field descriptor (offset) for struct member 'flag'.Field Documentation
Blender Source Code
Which axis/plane to compare owner's location on.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
bClampToConstraint bclamptoconstraint = ...; CPointer<Object> p = bclamptoconstraint.__dna__addressof(bClampToConstraint.__DNA__FIELD__flag); CPointer<Integer> p_flag = p.cast(new Class[]{Integer.class});
Metadata
- Field: 'flag'
- Signature: 'int'
- Actual Size (32bit/64bit): 4/4
-
__DNA__FIELD__flag2
public static final long[] __DNA__FIELD__flag2
Field descriptor (offset) for struct member 'flag2'.Field Documentation
Blender Source Code
For legacy reasons, this is flag2. used for any extra settings.
Pointer Arithmetics
This is how you get a reference on the corresponding field in the struct:
bClampToConstraint bclamptoconstraint = ...; CPointer<Object> p = bclamptoconstraint.__dna__addressof(bClampToConstraint.__DNA__FIELD__flag2); CPointer<Integer> p_flag2 = p.cast(new Class[]{Integer.class});
Metadata
- Field: 'flag2'
- Signature: 'int'
- Actual Size (32bit/64bit): 4/4
-
-
Constructor Detail
-
bClampToConstraint
public bClampToConstraint(long __address, Block __block, BlockTable __blockTable)
-
bClampToConstraint
protected bClampToConstraint(bClampToConstraint that)
-
-
Method Detail
-
getTar
public CPointer<BlenderObject> getTar() throws java.io.IOException
Get method for struct member 'tar'.Field Documentation
Blender Source Code
'target' must be a curve.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__tar
-
setTar
public void setTar(CPointer<BlenderObject> tar) throws java.io.IOException
Set method for struct member 'tar'.Field Documentation
Blender Source Code
'target' must be a curve.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__tar
-
getFlag
public int getFlag() throws java.io.IOException
Get method for struct member 'flag'.Field Documentation
Blender Source Code
Which axis/plane to compare owner's location on.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__flag
-
setFlag
public void setFlag(int flag) throws java.io.IOException
Set method for struct member 'flag'.Field Documentation
Blender Source Code
Which axis/plane to compare owner's location on.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__flag
-
getFlag2
public int getFlag2() throws java.io.IOException
Get method for struct member 'flag2'.Field Documentation
Blender Source Code
For legacy reasons, this is flag2. used for any extra settings.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__flag2
-
setFlag2
public void setFlag2(int flag2) throws java.io.IOException
Set method for struct member 'flag2'.Field Documentation
Blender Source Code
For legacy reasons, this is flag2. used for any extra settings.
- Throws:
java.io.IOException
- See Also:
__DNA__FIELD__flag2
-
__io__addressof
public CPointer<bClampToConstraint> __io__addressof()
Instantiates a pointer on this instance.
-
-