Blame view

Giac_maj/giac-1.4.9/examples/geo/envelopt 310 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
  xyztrange(-6.0,6.0,-7.0,4.0,-10.0,10.0,-3.0,3.0,-6.0,6.0,-2.0,4.0,1);
  purge(x);
  purge(y);
  purge(t);
  purge(tt);
  d:=x*(cos(2*t)-cos(t))+y*(sin(2*t)-sin(t))-sin(2*t);
  enveloppe(d);
  tt:=element(-3..4);
  dd:=subst(d,t,tt);
  aa:=derive(dd,y);
  bb:=derive(dd,x);
  cc:=subst(subst(dd,x=0),y=0);
  plotfunc((-bb*x-cc)/aa,x);