dbCreateParamSimpleMosaic
dbCreateParamSimpleMosaic(
d_cellView
d_masterCellView
t_name
l_origin
l_orient
x_rows
x_cols
n_rowSpacing
n_colSpacing
l_params
)
=> d_mosaic / nil
Description
Creates a parameterized simple mosaic (from the master d_masterCellView) in d_cellView, with an origin and orientation specified by l_origin and l_orient.
Arguments
|
d_cellView
|
The dbObject ID of the cellview.
|
|
d_masterCellView
|
The dbObject ID of the master cellview.
|
|
t_name
|
If specified, the mosaic is named t_name; if nil, the program assigns a unique name to the mosaic.
|
|
l_origin
|
Origin of the lower left instance in the array.
|
|
l_orient
|
Orientation of the instance.
|
|
x_rows
|
Number of rows defining the size of the array.
|
|
x_cols
|
Number of columns defining the size of the array.
|
|
n_rowSpacing
|
Spacing between the origins of the mosaic elements in y-direction.
|
|
n_colSpacing
|
Spacing between the origins of the mosaic elements in x-direction.
|
|
l_params
|
List of l_param, the names, types, and values of parameters of the mosaic.
|
Value Returned
|
d_mosaic
|
The dbObject of the mosaic.
|
|
nil
|
The mosaic is not created.
|
Examples
dbCreateParamSimpleMosaic(cv masterTile "myMos" 0:0 "R0" 5 7 3 2 list(list("l" "float" 5.0)))
Related Topics
Mosaic Creation and Retrieval Functions
Return to top