/* Demonstration program for PLPLOT illustrating absolute positioning */
/* of graphs on a page */

#include "plplot.h"

main()
{
   plstar(1,1);

   pladv(0);
   plvpor(0.0,1.0,0.0,1.0);
   plwind(0.0,1.0,0.0,1.0);
   plbox("bc",0.0,0,"bc",0.0,0);

   plsvpa(50.0,150.0,100.0,150.0);
   plwind(0.0,1.0,0.0,1.0);
   plbox("bc",0.0,0,"bc",0.0,0);
   plptex(0.5,0.5,1.0,0.0,0.5,"BOX at (50,150,100,150)");

   plend();
}
