vfoUpdateModelShape
vfoUpdateModelShape(g_obj d_instId shapeId newShapeType newPointList[ @restl_args] ) => t / nil
Description
Updates the given fluid shape of the Pcell instance. The new shape type and points are specified in the newShapeType and newPointList arguments, respectively. The newPointList points are in the design coordinates. This function transforms the newPointList before updating the fluid shape. The Edit command for fluid shapes does not pass these arguments. This function updates the relevant Pcell parameters.
Arguments
Value Returned
|
The fluid shape of the given instance is successfully updated. |
|
Example
vfoGetParam(inst "shapeType") => "polygon" vfoUpdateModelShape(obj inst Shape1 "rect" list((2 2) (3 1))) => t vfoGetParam(inst "shapeType") => "rect"
Return to top