public class ScrAreaMap extends CFacade
Modifier and Type | Field and Description |
---|---|
static long[] |
__DNA__FIELD__areabase
Field descriptor (offset) for struct member 'areabase'.
|
static long[] |
__DNA__FIELD__edgebase
Field descriptor (offset) for struct member 'edgebase'.
|
static long[] |
__DNA__FIELD__vertbase
Field descriptor (offset) for struct member 'vertbase'.
|
static int |
__DNA__SDNA_INDEX
This is the sdna index of the struct ScrAreaMap.
|
__io__address, __io__arch_index, __io__block, __io__blockTable, __io__pointersize
Modifier | Constructor and Description |
---|---|
|
ScrAreaMap(long __address,
Block __block,
BlockTable __blockTable) |
protected |
ScrAreaMap(ScrAreaMap that) |
Modifier and Type | Method and Description |
---|---|
CPointer<ScrAreaMap> |
__io__addressof()
Instantiates a pointer on this instance.
|
ListBase |
getAreabase()
Get method for struct member 'areabase'.
|
ListBase |
getEdgebase()
Get method for struct member 'edgebase'.
|
ListBase |
getVertbase()
Get method for struct member 'vertbase'.
|
void |
setAreabase(ListBase areabase)
Set method for struct member 'areabase'.
|
void |
setEdgebase(ListBase edgebase)
Set method for struct member 'edgebase'.
|
void |
setVertbase(ListBase vertbase)
Set method for struct member 'vertbase'.
|
__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 ScrAreaMap.
org.cakelab.blender.io.dna.internal.StructDNA}
,
org.cakelab.blender.io.block.BlockTable#allocate}
,
Constant Field Valuespublic static final long[] __DNA__FIELD__vertbase
** NOTE: KEEP ORDER IN SYNC WITH LISTBASES IN bScreen! ** ScrVert
- screens have vertices/edges to define areas.
This is how you get a reference on the corresponding field in the struct:
ScrAreaMap scrareamap = ...; CPointer<Object> p = scrareamap.__dna__addressof(ScrAreaMap.__DNA__FIELD__vertbase); CPointer<ListBase> p_vertbase = p.cast(new Class[]{ListBase.class});
public static final long[] __DNA__FIELD__edgebase
ScrEdge
.
This is how you get a reference on the corresponding field in the struct:
ScrAreaMap scrareamap = ...; CPointer<Object> p = scrareamap.__dna__addressof(ScrAreaMap.__DNA__FIELD__edgebase); CPointer<ListBase> p_edgebase = p.cast(new Class[]{ListBase.class});
public static final long[] __DNA__FIELD__areabase
ScrArea
.
This is how you get a reference on the corresponding field in the struct:
ScrAreaMap scrareamap = ...; CPointer<Object> p = scrareamap.__dna__addressof(ScrAreaMap.__DNA__FIELD__areabase); CPointer<ListBase> p_areabase = p.cast(new Class[]{ListBase.class});
public ScrAreaMap(long __address, Block __block, BlockTable __blockTable)
protected ScrAreaMap(ScrAreaMap that)
public ListBase getVertbase() throws java.io.IOException
** NOTE: KEEP ORDER IN SYNC WITH LISTBASES IN bScreen! ** ScrVert
- screens have vertices/edges to define areas.
java.io.IOException
__DNA__FIELD__vertbase
public void setVertbase(ListBase vertbase) throws java.io.IOException
** NOTE: KEEP ORDER IN SYNC WITH LISTBASES IN bScreen! ** ScrVert
- screens have vertices/edges to define areas.
java.io.IOException
__DNA__FIELD__vertbase
public ListBase getEdgebase() throws java.io.IOException
java.io.IOException
__DNA__FIELD__edgebase
public void setEdgebase(ListBase edgebase) throws java.io.IOException
java.io.IOException
__DNA__FIELD__edgebase
public ListBase getAreabase() throws java.io.IOException
java.io.IOException
__DNA__FIELD__areabase
public void setAreabase(ListBase areabase) throws java.io.IOException
java.io.IOException
__DNA__FIELD__areabase
public CPointer<ScrAreaMap> __io__addressof()