//MPMorph-rexx/MOVEPOINT
MOVEPOINT :
NAME
MOVEPOINT -- Moves a point.
SYNOPSIS
MOVEPOINT( X/K/A/N,Y/K/A/N,X1/K/A/N,Y1/K/A/N,X2/K/A/N,Y2/K/A/N )
FUNCTION
Moves a point.
INPUTS
X - The old X coord of point in image 1.
Y - The old Y coord of point in image 1.
X1 - The new X coord of point in image 1.
Y1 - The new Y coord of point in image 1.
X2 - The new X coord of point in image 2.
Y2 - The new Y coord of point in image 2.
RESULT
Returns error where relevant.
EXAMPLE
MOVEPOINT X 2 Y 2 X1 5 Y1 5 X2 10 Y2 10
NOTES
The point is automatically restricted to the current output size.
The old coords are of the point in image 1.
BUGS
SEE ALSO
ADDPOINT().