pcGrowBox
pcGrowBox(l_pointList xf_margin) =>l_incrementedPointList/nil
Description
Increase or decrease the size of the specified box by the specified margin. The system adds xf_margin to each coordinate in the list and returns a list of the coordinates of the resulting box.
Arguments
Value Returned
|
List of coordinates defining the incremented box, in either of the following formats: |
|
Examples
pcGrowBox( '( 0:0 2:2 ) 5.5 ) =>((-5.5 -5.5) (7.5 7.5) )
Increments the two points of the original box by 5.5 and returns a list of the points defining the incremented box.
Return to top