summaryrefslogtreecommitdiff
path: root/graphics/epix/doc/arrow.xp
blob: 34c47ad5e0cf850d6c364d5077f4b021de83fd31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* -*-ePiX-*- */
#include "epix.h"
using namespace ePiX;

int main() 
{
  picture(P(-2,-1),P(2,1), "24x12pt");

  begin();
#ifdef CAMBER25
  arrow_camber(0.25);
#elif CAMBER50
  arrow_camber(0.5);
#endif

  arrow(P(xmin(),0), P(xmax(),0));
  end();
}