home *** CD-ROM | disk | FTP | other *** search
- rem macro to move a point to another point
- while(1)
- {
- curmode j
- cur "Select point to move" x y k
- if(k)
- {
- curmode f
- end
- }
- curmode a
- cur "Enter point it should move to" x1 y1 k
- if(k)
- {
- curmode f
- end
- }
- enquire zoom x2 y2 x3 y3
- i=(x3-x2)*.001
- stretch "Y" [x-i,y-i] [#x+i,y+i] [x,y] [x1,y1]
- }
- end
-
-
-