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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
|
%% bldelem4.ldf
%% Created by Laurence D. Finston (LDF) Wed Jun 20 13:15:08 CEST 2012
%% * (1) Copyright and License.
%%%% This file is part of GNU 3DLDF, a package for three-dimensional drawing.
%%%% Copyright (C) 2012, 2013 The Free Software Foundation
%%%% GNU 3DLDF is free software; you can redistribute it and/or modify
%%%% it under the terms of the GNU General Public License as published by
%%%% the Free Software Foundation; either version 3 of the License, or
%%%% (at your option) any later version.
%%%% GNU 3DLDF is distributed in the hope that it will be useful,
%%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
%%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
%%%% GNU General Public License for more details.
%%%% You should have received a copy of the GNU General Public License
%%%% along with GNU 3DLDF; if not, write to the Free Software
%%%% Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
%%%% GNU 3DLDF is a GNU package.
%%%% It is part of the GNU Project of the
%%%% Free Software Foundation
%%%% and is published under the GNU General Public License.
%%%% See the website http://www.gnu.org
%%%% for more information.
%%%% GNU 3DLDF is available for downloading from
%%%% http://www.gnu.org/software/3dldf/LDF.html.
%%%% Please send bug reports to Laurence.Finston@gmx.de
%%%% The mailing list help-3dldf@gnu.org is available for people to
%%%% ask other users for help.
%%%% The mailing list info-3dldf@gnu.org is for sending
%%%% announcements to users. To subscribe to these mailing lists, send an
%%%% email with ``subscribe <email-address>'' as the subject.
%%%% The author can be contacted at:
%%%% Laurence D. Finston
%%%% c/o Free Software Foundation, Inc.
%%%% 51 Franklin St, Fifth Floor
%%%% Boston, MA 02110-1301
%%%% USA
%%%% Laurence.Finston@gmx.de
%% Created: July 4, 2012
%% Last updated: July 4, 2012
%% Run like this:
%% 3dldf bldelem4.ldf
%% mpost bldelem4.mp
%% tex bldelem4.txt
%% dvips -o bldelem4.ps bldelem4.dvi
%% ps2pdf bldelem4.ps
%% All on one line:
if false:
3dldf bldelem4.ldf && mpost bldelem4.mp && tex bldelem4.txt && \
dvips -o bldelem4.ps bldelem4.dvi \
&& ps2pdf bldelem4.ps
fi;
%% View the PostScript file using Ghostview like this:
%% gv bldelem4.ps &
%% or with GNU Ghostview like this:
%% ggv bldelem4.ps &
%% View the PDF file with Acrobat Reader like this:
%% acroread bldelem4.pdf &
%% * (1) Pyramids
%% * (1) Beginning of 3DLDF code.
input "bldelem1.lmc";
input "bldelem3.lmc";
%% * (1) Declarations
picture v;
picture w;
focus f[];
set f0 with_position (-20, 10, -50)
with_direction (-20, 10, 10) with_distance 60;
boolean do_testing;
numeric diameter_two;
numeric ZERO;
ZERO := 0;
%% Figure 0 must be generated.
beginfig(0);
drawdot origin;
endfig with_projection parallel_x_y no_sort;
picture u;
picture v;
picture w;
picture text_picture;
picture dbl_tab_picture;
%% *** (3) Triangular bases
%% sides
%% base diameter
%% height (non-truncated)
%% height of lower section (truncated)
%% height of upper section (obelisk) --- used when called by macro `obelisk', never
%% when called directly
%% crosshair counter A
%% crosshair counter B
%% do_guidelines (not used in macro as of 2012.07.04.)
%% do_labels
j := 1;
for i = 1 upto 5:
pyramid (u, v, w, text_picture, dbl_tab_picture, diameter_two, ZERO, ZERO)
{3, 1, j, 0, 0, 5, 0, true, false};
beginfig(i);
current_picture := u;
endfig with_focus f0 no_sort;
beginfig(1000 + i);
current_picture += v;
endfig with_projection parallel_x_y no_sort;
beginfig(2000 + i);
current_picture += w;
endfig with_projection parallel_x_y no_sort;
beginfig(3000 + i);
current_picture += text_picture;
endfig with_projection parallel_x_y no_sort;
beginfig(4000 + i);
current_picture += dbl_tab_picture;
endfig with_projection parallel_x_y no_sort;
%endfig with_projection parallel_x_z no_sort;
clear u;
clear v;
clear w;
clear text_picture;
clear dbl_tab_picture;
j += .5;
endfor;
j := 1;
for i = 6 upto 14:
pyramid (u, v, w, text_picture, dbl_tab_picture, diameter_two, ZERO, ZERO)
{3, 1.5, j, 0, 0, 5, 0, true, false};
beginfig(i);
current_picture := u;
endfig with_focus f0 no_sort;
beginfig(1000 + i);
current_picture += v;
endfig with_projection parallel_x_y no_sort;
beginfig(2000 + i);
current_picture += w;
endfig with_projection parallel_x_y no_sort;
beginfig(3000 + i);
current_picture += text_picture;
endfig with_projection parallel_x_y no_sort;
beginfig(4000 + i);
current_picture += dbl_tab_picture;
endfig with_projection parallel_x_y no_sort;
%endfig with_projection parallel_x_z no_sort;
clear u;
clear v;
clear w;
clear text_picture;
clear dbl_tab_picture;
j += .5;
endfor;
%% ** (2)
verbatim_metapost "end";
end;
%% ** (2)
%% * (1) Emacs-Lisp code for use in indirect buffers when using the
%% GNU Emacs editor. The local variable list is not evaluated when an
%% indirect buffer is visited, so it's necessary to evaluate the
%% following s-expression in order to use the facilities normally
%% accessed via the local variables list.
%% \initials{LDF 2004.02.12}.
%% (progn (metafont-mode) (outline-minor-mode t) (setq fill-column 80))
%% * (1) Local variables for Emacs.
%% Local Variables:
%% mode:Metafont
%% eval:(outline-minor-mode t)
%% eval:(read-abbrev-file abbrev-file-name)
%% outline-regexp:"%% [*\f]+"
%% eval:(set-register ?c "bldelem4.ldf")
%% eval:(set-register ?. "bldelem4.txt")
%% End:
|