summaryrefslogtreecommitdiff
path: root/graphics/epix/samples/inverse.xp
blob: d336b67b31b92d4794dd55ad8dcc25c5b5875d66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* -*-ePiX-*- */
#include "epix.h"
using namespace ePiX;

// parameters and an odd cubic
const double x0(0.4); // critical point
const double sqrt3(sqrt(3));

double f(double x)
{
  return 2*x*(x-sqrt3*x0)*(x+sqrt3*x0);
}

int main()
{
  picture(P(-2,-1), P(2,1), "6 x 3in");

  begin();

  degrees();

  // draw "ordinary" graph
  screen tmp(P(-1,-1), P(1,1));
  activate(tmp);

  // diagonal
  pen(Black(0.1));
  line(P(-1,-1), P(1,1));

  // two-headed arrow
  pen(Black(0.3));
  aarrow(P(0.4,0.6), P(0.6,0.4), 0.5);

  // axes and labels
  pen(Black());
  font_size("footnotesize");

  h_axis(8);
  v_axis(8);

  masklabel(P(1,0), "$x$");
  masklabel(P(0,1), "$y$");

  label(P(0.5,-0.5), "$y=f(x)$");

  label_angle(-90);
  label(P(-0.5,0.5), "$x=f^{-1}(y)$");

  // crop remaining elements
  tmp.set_crop();

  // a horizontal tangent line
  plain(Blue(1.4));
  tan_line(f, x0);

  // graphs that will be inverse branches
  plain(Red(1.4));
  plot(f, -1, -x0, 20);

  bold(Red());
  plot(f, -x0, x0, 20);

  plain(Red(1.4));
  plot(f, x0, 1, 20);

  inset(tmp, P(-2,-1), P(0,1));

  // flip plane over diagonal
  affine af;
  af.reflect(45).shift(P(0.25,0)); // compose affine maps
  inset(tmp.apply(af), P(0,-1), P(2,1));

  end();
}