dbGetCurvedPathRealWidth
dbGetCurvedPathRealWidth(d_curvedPath) =>l_realWidth/ nil
Description
(Virtuoso MultiTech Framework) Returns the real width that has been set on the path by dbSetCurvedPathRealWidth.
Arguments
Value Returned
Example
The following code creates a curved path of width 3 and then changes 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