aboutsummaryrefslogtreecommitdiffstats
path: root/buch/chapters/030-geometrie/images
diff options
context:
space:
mode:
authorAndreas Müller <andreas.mueller@ost.ch>2022-01-02 12:35:36 +0100
committerAndreas Müller <andreas.mueller@ost.ch>2022-01-02 12:35:36 +0100
commit083feab0f9542f4e6e01c51c1beb6878f2f70b2f (patch)
tree6ccde264db9a51e4a3a817400057f53b08da2359 /buch/chapters/030-geometrie/images
parentfix some errors in hypergeometric examples (diff)
downloadSeminarSpezielleFunktionen-083feab0f9542f4e6e01c51c1beb6878f2f70b2f.tar.gz
SeminarSpezielleFunktionen-083feab0f9542f4e6e01c51c1beb6878f2f70b2f.zip
new images
Diffstat (limited to 'buch/chapters/030-geometrie/images')
-rw-r--r--buch/chapters/030-geometrie/images/Makefile13
-rw-r--r--buch/chapters/030-geometrie/images/zylinder.pdfbin0 -> 163527 bytes
-rw-r--r--buch/chapters/030-geometrie/images/zylinder.tex47
3 files changed, 59 insertions, 1 deletions
diff --git a/buch/chapters/030-geometrie/images/Makefile b/buch/chapters/030-geometrie/images/Makefile
index d9e660f..a18208d 100644
--- a/buch/chapters/030-geometrie/images/Makefile
+++ b/buch/chapters/030-geometrie/images/Makefile
@@ -4,7 +4,11 @@
# (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
#
-all: hyperbelflaeche.pdf polargleichung.pdf deftrig.pdf einheitskreis.pdf
+all: hyperbelflaeche.pdf \
+ polargleichung.pdf \
+ deftrig.pdf \
+ einheitskreis.pdf \
+ zylinder.pdf
hyperbelflaeche.pdf: hyperbelflaeche.tex
pdflatex hyperbelflaeche.tex
@@ -18,4 +22,11 @@ deftrig.pdf: deftrig.tex
einheitskreis.pdf: einheitskreis.tex
pdflatex einheitskreis.tex
+zylinder.png: zylinder.pov
+ povray +A0.1 +W1920 +H1080 -Ozylinder.png zylinder.pov
+zylinder.jpg: zylinder.png Makefile
+ convert -extract 1844x1080+32+0 zylinder.png \
+ -density 300 -units PixelsPerInch zylinder.jpg
+zylinder.pdf: zylinder.tex zylinder.jpg
+ pdflatex zylinder.tex
diff --git a/buch/chapters/030-geometrie/images/zylinder.pdf b/buch/chapters/030-geometrie/images/zylinder.pdf
new file mode 100644
index 0000000..d092587
--- /dev/null
+++ b/buch/chapters/030-geometrie/images/zylinder.pdf
Binary files differ
diff --git a/buch/chapters/030-geometrie/images/zylinder.tex b/buch/chapters/030-geometrie/images/zylinder.tex
new file mode 100644
index 0000000..db546cc
--- /dev/null
+++ b/buch/chapters/030-geometrie/images/zylinder.tex
@@ -0,0 +1,47 @@
+%
+% zylinder.tex
+%
+% (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
+%
+\documentclass[tikz]{standalone}
+\usepackage{times}
+\usepackage{amsmath}
+\usepackage{txfonts}
+\usepackage[utf8]{inputenc}
+\usepackage{graphics}
+\usetikzlibrary{arrows,intersections,math}
+\usepackage{ifthen}
+\begin{document}
+
+\newboolean{showgrid}
+\setboolean{showgrid}{false}
+\def\breite{7}
+\def\hoehe{4}
+
+\begin{tikzpicture}[>=latex,thick]
+
+% Povray Bild
+\node at (0,0) {\includegraphics[width=14cm]{zylinder.jpg}};
+
+% Gitter
+\ifthenelse{\boolean{showgrid}}{
+\draw[step=0.1,line width=0.1pt] (-\breite,-\hoehe) grid (\breite, \hoehe);
+\draw[step=0.5,line width=0.4pt] (-\breite,-\hoehe) grid (\breite, \hoehe);
+\draw (-\breite,-\hoehe) grid (\breite, \hoehe);
+\fill (0,0) circle[radius=0.05];
+}{}
+
+\node at (-6.4,-3.8) {$y$};
+\node at (4.9,4.0) {$z$};
+\node at (2.5,0) {$x$};
+\node at (-1.8,2.5) [rotate=18] {$2\pi r$};
+\node at (-6.9,-1) [left] {$h$};
+
+\node at (4.4,0) [above] {$\gamma(t)$};
+\node at (6.5,0.3) [below] {$\dot{\gamma}(t)$};
+\node at (4.6,2.6) [above left] {$r$};
+
+\end{tikzpicture}
+
+\end{document}
+