The drawGeometricPath
method draws a path (a sequence of connected lines).
drawGeometricPath ( path, thickness, color )
Argument | Description |
---|---|
path
|
The location of the path data in the input records. |
thickness
|
The line thickness, in pixels. |
color
|
The line color. See the function rgb. |
Nothing.
drawGeometricPath ( record.GeometricPathData, 5, rgb(255,255,255))
|