dbCreateParamSimpleMosaicByMasterName
dbCreateParamSimpleMosaicByMasterName(
d_cellView
t_libName
t_cellName
t_viewName
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 t_libName/t_cellName/t_viewName) in d_cellView, with an origin and orientation specified by l_origin and l_orient.
Arguments
|
d_cellView
|
The dbObject ID of the cellview.
|
|
t_libName
|
Library name of the master cellview.
|
|
t_cellName
|
Cell name of the master cellview.
|
|
t_viewName
|
View name of the master cellview.
|
|
t_Name
|
Name of the mosaic. If t_Name is 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
dbCreateParamSimpleMosaicByMasterName(cv "masterLib" "masterCell" "masterView" "myMos" 0:0 "R0" 5 7 3 2 list(list("l" "float" 5.0)))
Related Topics
Mosaic Creation and Retrieval Functions
Return to top