summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/metapost
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-09-27 18:06:44 +0000
committerKarl Berry <karl@freefriends.org>2006-09-27 18:06:44 +0000
commitc31daf21a745dc6c14ad116918ba562d16727493 (patch)
tree83ef8a9d6f4c91e4cbb329c7cb3f931ad5b6c5f1 /Master/texmf-dist/metapost
parentf5d0191673c654e2ccf2ad927106d4f22b7f4c31 (diff)
new metapost package splines (26sep06)
git-svn-id: svn://tug.org/texlive/trunk@2207 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/metapost')
-rw-r--r--Master/texmf-dist/metapost/splines/splines.mp139
-rw-r--r--Master/texmf-dist/metapost/splines/testsplines.mp122
2 files changed, 261 insertions, 0 deletions
diff --git a/Master/texmf-dist/metapost/splines/splines.mp b/Master/texmf-dist/metapost/splines/splines.mp
new file mode 100644
index 00000000000..c725c8b3b93
--- /dev/null
+++ b/Master/texmf-dist/metapost/splines/splines.mp
@@ -0,0 +1,139 @@
+%%
+%% This is file `splines.mp',
+%% generated with the docstrip utility.
+%%
+%% The original source files were:
+%%
+%% splines.dtx (with options: `package')
+%%
+%% -------------------------------------------------------------------
+%%
+%% Copyright 2002--2005, Daniel H. Luecking
+%%
+%% Splines.mp may be distributed and/or modified under the conditions of the
+%% LaTeX Project Public License, either version 1.3 of this license or (at
+%% your option) any later version. The latest version of this license is in
+%% <http://www.latex-project.org/lppl.txt>
+%% and version 1.3 or later is part of all distributions of LaTeX version
+%% 2003/12/01 or later.
+%%
+%% Splines has maintenance status "author-maintained". The Current Maintainer
+%% is Daniel H. Luecking. The Base Interpreter is MetaPost (or Metafont).
+%%
+if known splines_fileversion: endinput fi;
+string splines_fileversion;
+splines_fileversion := "2006/09/25, v0.2a";
+message "Loading splines.mp " & splines_fileversion;
+
+def list_to_array (suffix arr) (text list) =
+ arr := 0;
+ for _itm = list :
+ arr[incr arr] := _itm;
+ endfor
+enddef;
+
+def compute_spline (expr closed) (suffix points, pr, po) =
+ % interior equations:
+ for j= 2 upto points - 1 :
+ % equate first derivatives:
+ po[j] + pr[j] = 2 points[j];
+ % and second derivatives:
+ pr[j+1] + 2 pr[j] = 2 po[j] + po[j-1];
+ endfor
+ % for a closed curve, the first and last are also interior:
+ if closed:
+ po 1 + pr 1 = 2 points 1;
+ po[points] + pr[points] = 2 points[points];
+ pr 2 + 2 pr 1 = 2 po 1 + po[points];
+ pr 1 + 2 pr[points] = 2 po[points] + po[points-1];
+ fi
+enddef;
+
+vardef mksplinepath (expr closed) (suffix points, pr, po) =
+ points1..controls po1 and
+ for j = 2 upto points if not closed: -1 fi:
+ pr[j]..points[j]..controls po[j] and
+ endfor
+ if closed: pr 1..cycle else: pr[points]..points[points] fi
+enddef;
+
+vardef mkrelaxedspline (suffix pnts) =
+ save rs_pr, rs_po;
+ pair rs_po[], rs_pr[];
+ % Equate second derivative to zero at both end points
+ rs_pr 2 + pnts 1 = 2 rs_po 1 ;
+ pnts[pnts] + rs_po[pnts-1] = 2 rs_pr[pnts];
+ compute_spline (false) (pnts, rs_pr, rs_po);
+ mksplinepath (false) (pnts, rs_pr, rs_po)
+enddef;
+
+vardef mkclosedspline (suffix pnts) =
+ save cs_pr, cs_po;
+ pair cs_pr[], cs_po[];
+ compute_spline (true) (pnts, cs_pr, cs_po);
+ mksplinepath (true) (pnts, cs_pr, cs_po)
+enddef;
+
+vardef dospline (expr closed) (text the_list) =
+ save _sp; pair _sp[];
+ list_to_array (_sp) (the_list);
+ if closed :
+ mkclosedspline (_sp)
+ else:
+ mkrelaxedspline (_sp)
+ fi
+enddef;
+
+def compute_fcnspline (suffix points, dx, sl) =
+ % Get delta_x:
+ for j = 1 upto points - 1: dx[j] := xpart (points[j+1]-points[j]);
+ endfor
+ for j=2 upto points - 1:
+ sl[j + 1] * dx[j] + 2sl[j]*(dx[j] + dx[j-1]) + sl[j-1]*dx[j-1]
+ = 3*ypart(points[j+1] - points[j-1]);
+ endfor
+enddef;
+
+vardef mkfcnsplinepath (suffix points, dx, sl) =
+ points1..controls (points1 + (1, sl1)*dx1/3) and
+ for j = 2 upto points - 1:
+ (points[j] - (1, sl[j])*dx[j-1]/3) ..points[j]..
+ controls (points[j] + (1,sl[j])*dx[j]/3) and
+ endfor
+ (points[points] - (1,sl[points])*dx[points-1]/3)..points[points]
+enddef;
+
+vardef mkperiodicfcnspline (suffix pnts) =
+ save _sl, _dx; numeric _dx[], _sl[];
+ compute_fcnspline (pnts, _dx, _sl);
+ % periodicity equations:
+ _sl 1 = _sl[pnts];
+ _sl 2 * _dx 1 + 2 _sl 1 * _dx 1 + 2 _sl[pnts] * _dx[pnts-1]
+ + _sl[pnts-1] * _dx[pnts-1]
+ = 3 * ypart(pnts[2] - pnts[pnts-1]);
+ mkfcnsplinepath (pnts, _dx, _sl)
+enddef;
+
+vardef mkrelaxedfcnspline (suffix pnts) =
+ save _sl, _dx; numeric _dx[], _sl[];
+ compute_fcnspline (pnts, _dx, _sl);
+ % relaxation equations.
+ _sl 2 * _dx 1 + 2 _sl1 * _dx 1 = 3 * ypart(pnts2 - pnts1);
+ _sl[pnts-1] * _dx[pnts-1] + 2 _sl[pnts] * _dx[pnts-1]
+ = 3 * ypart(pnts[pnts] - pnts[pnts-1]);
+ mkfcnsplinepath (pnts, _dx, _sl)
+enddef;
+
+vardef fcnspline (expr periodic) (text the_list) =
+ save _fs; pair _fs[];
+ list_to_array (_fs) (the_list);
+ if periodic:
+ mkperiodicfcnspline (_fs)
+ else:
+ mkrelaxedfcnspline (_fs)
+ fi
+enddef;
+
+endinput.
+%%
+%% End of file `splines.mp'.
diff --git a/Master/texmf-dist/metapost/splines/testsplines.mp b/Master/texmf-dist/metapost/splines/testsplines.mp
new file mode 100644
index 00000000000..a6ad01d0adb
--- /dev/null
+++ b/Master/texmf-dist/metapost/splines/testsplines.mp
@@ -0,0 +1,122 @@
+input splines;
+
+numeric u; u:=1cm;
+
+path xaxis, yaxis;
+xaxis := (-2.5u,0)--(1.5u,0);
+yaxis := (0,-.5u)--(0,1.5u);
+
+def shiftit =
+ currentpicture := currentpicture shifted -llcorner currentpicture;
+enddef;
+
+def dodots (text t) =
+ for _loc = t:
+ fill (fullcircle scaled 2pt) shifted (u*_loc);
+ endfor
+enddef;
+
+
+
+beginfig(1);
+ drawarrow xaxis;
+ drawarrow yaxis;
+ path p;
+ p := dospline (true)
+ ((-1,0), (-1,1), (-.5,.8), (0,1),(.5,.4), (1,0), (1.5,1));
+ draw p scaled u;
+label(btex From {\tt dospline (true)}. etex,(.25u,-.75u));
+dodots ((-1,0), (-1,1), (-.5,.8), (0,1),(.5,.4), (1,0), (1.5,1));
+shiftit;
+endfig;
+
+beginfig(2);
+ drawarrow xaxis;
+ drawarrow yaxis;
+ save A; pair A[];
+ list_to_array (A)((-1,0), (-1,1), (-.5,.8), (0,1),(.5,.4), (1,0), (1.5,1));
+ path p;
+ p := mkclosedspline (A);
+ draw p scaled u;
+label(btex From {\tt mkclosedspline}. etex,(.25u,-.75u));
+dodots (A1, A2, A3, A4, A5, A6, A7);
+shiftit;
+endfig;
+
+beginfig(3);
+ drawarrow xaxis;
+ drawarrow yaxis;
+ path p;
+ p := dospline (false)
+ ((-1,0), (-1,1), (-.5,.8), (0,1),(.5,.4), (1,0), (1.5,1));
+ draw p scaled u;
+label(btex From {\tt dospline (false)}. etex,(.25u,-.75u));
+dodots ((-1,0), (-1,1), (-.5,.8), (0,1),(.5,.4), (1,0), (1.5,1));
+shiftit;
+endfig;
+
+beginfig(4);
+ drawarrow xaxis;
+ drawarrow yaxis;
+ save A; pair A[];
+ list_to_array (A)((-1,0), (-1,1), (-.5,.8), (0,1),(.5,.4), (1,0), (1.5,1));
+ path p;
+ p := mkrelaxedspline (A);
+ draw p scaled u;
+label(btex From {\tt mkrelaxedspline}. etex,(.25u,-.75u));
+dodots (A1, A2, A3, A4, A5, A6, A7);
+shiftit;
+endfig;
+
+beginfig(5);
+ drawarrow xaxis;
+ drawarrow yaxis;
+ path p;
+ p := fcnspline (true)
+ ((-2,0), (-1,1), (-.5,.8), (0,1),(.5,.4), (1,0), (1.5,1));
+ draw p scaled u;
+label(btex From {\tt fcnspline (true)}. etex,(.25u,-.75u));
+dodots ((-2,0), (-1,1), (-.5,.8), (0,1),(.5,.4), (1,0), (1.5,1));
+shiftit;
+endfig;
+
+beginfig(6);
+ drawarrow xaxis;
+ drawarrow yaxis;
+ save A; pair A[];
+ list_to_array(A) ((-2,0), (-1,1), (-.5,.8), (0,1),(.5,.4), (1,0), (1.5,1));
+ path p;
+ p := mkperiodicfcnspline (A);
+ draw p scaled u;
+label(btex From {\tt mkperiodicfcnspline}. etex,(.25u,-.75u));
+dodots (A1, A2, A3, A4, A5, A6, A7);
+shiftit;
+endfig;
+
+beginfig(7);
+ drawarrow xaxis;
+ drawarrow yaxis;
+ path p;
+ p := fcnspline (false)
+ ((-2,0), (-1,1), (-.5,.8), (0,1),(.5,.4), (1,0), (1.5,1));
+ draw p scaled u;
+label(btex From {\tt fcnspline (false)}. etex,(.25u,-.75u));
+dodots((-2,0), (-1,1), (-.5,.8), (0,1),(.5,.4), (1,0), (1.5,1));
+shiftit;
+endfig;
+
+beginfig(8);
+ drawarrow xaxis;
+ drawarrow yaxis;
+ save A; pair A[];
+ list_to_array(A) ((-2,0), (-1,1), (-.5,.8), (0,1),(.5,.4), (1,0), (1.5,1));
+ path p;
+ p := mkrelaxedfcnspline (A);
+ draw p scaled u;
+label(btex From {\tt mkrelaxedfcnspline}. etex,(.25u,-.75u));
+dodots (A1, A2, A3, A4, A5, A6, A7);
+shiftit;
+endfig;
+
+end.
+