pcGetStepDirection
pcGetStepDirection(l_pointList) =>t_stepDirection/nil
Description
Returns the direction from the first point in the list to the second point in the list.
Arguments
Value Returned
|
The direction from the first point in the list to the second point in the list is neither vertical nor horizontal. |
Examples
pcGetStepDirection( '( 0 0 ) '( 1 0 ) )
=> "right"
Returns the direction from point 0:0 to point 1:0.
Return to top