dbSetCurvedPathRealWidth
dbSetCurvedPathRealWidth(d_curvedPath l_realWidth) =>d_curvedPathId
Description
(Virtuoso MultiTech Framework) Sets the real width of the curved path. The real width could be 1DBU or more.
Arguments
Value Returned
Example
The following code creates a curved path of width 3 and then sets it to 2.
cPath = dbCreateCurvedPath(cv list("DIE_PAD" "drawing") list((0:0) (0:10) (10:10) (10:0)) 3)
printf("width= %L\n" dbGetCurvedPathRealWidth(cPath))
dbSetCurvedPathRealWidth(cPath 2)
printf("width= %L\n" dbGetCurvedPathRealWidth(cPath))
Related Topics
dbCreateMultipleCurvedPolygons
Database Access Function Argument Types
Return to top