home *** CD-ROM | disk | FTP | other *** search
- /* MOVE AND DRAW ROUTINES IN WORLD COORDINATES */
-
- /* Move to world coordinates (x,y) */
-
- #include "plplot.h"
-
- void movwor(x,y)
- PLFLT x,y;
- {
- scurr(wcpcx(x),wcpcy(y));
- }
-
- /* Draws to world coordinates (x,y) */
-
- void drawor(x,y)
- PLFLT x,y;
- {
- PLINT currx, curry;
- gcurr(&currx,&curry);
- pllclp(currx,curry,wcpcx(x),wcpcy(y));
- }
-