~fboucault/paf/readme

« back to all changes in this revision

Viewing changes to docs/paf/images/transformation_ease_out.plot

  • Committer: Guillaume Emont
  • Date: 2008-05-06 14:45:17 UTC
  • Revision ID: guillaume@fluendo.com-20080506144517-g8l84ky3o613heta
Added more stuff on animation time.
Changed the ease-in, -out, -in-out plots, remade them with bezier splines.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# vi:ft=gnuplot
2
2
set format x "%g"
3
 
to_plot = "- x **3 + x**2 + x notitle"
4
3
x_meaning = "progression"
5
4
y_meaning = "value"
 
5
set samples 500
 
6
set trange [0:1]
 
7
X1=0
 
8
X2=0.25
 
9
x(t)=3*t*(1-t)**2*X1 + 3*t**2*(1-t)*X2 + t**3
 
10
y(t)=3*t**2*(1-t) + t**3
 
11
set parametric
 
12
to_plot="x(t),y(t) notitle"