dbCreateRailDefByAttr
dbCreateRailDefByAttr(d_cvId t_name l_attr_dpl) =>d_railDefId/ nil
Description
Creates railDef based on the SKILL DPL of the railDef object specification. Contents of the SKILL DPL specification are checked before railDef is created.
Arguments
|
SKILL DPL of the railDef specification. DPL is a list of following required and optional attributes: |
Value Returned
Examples
Creates a SKILL DPL for railDef specification and creates railDef based on the SKILL DPL.
;Creating SKILL DPL for railDef specification
gndRail = list(nil)
gndRail->lpp = list("gndLayer" "drawing")
gndRail->width = 0.02
gndRail->refOnArea = "topAlignment"
gndRail->refOnRail = "centerAlignment"
gndRail->netName = "gndNet"
gndRail->railFigType = "pathSeg"
;; Creating railDef
rdef = dbCreateRailDefByAttr(cv "railDef" gndRail)
Related Topics
Placement Database Access Functions
Return to top