aboutsummaryrefslogtreecommitdiffstats
path: root/buch/papers/clifford/3d/drehung.pov
diff options
context:
space:
mode:
authorJODBaer <JODBaer@github.com>2021-08-11 17:06:16 +0200
committerJODBaer <JODBaer@github.com>2021-08-11 17:06:16 +0200
commit8c9e230971ad761f566de42dbd5c9230d4e0dc1e (patch)
tree4d5754a18f8b1a326918a2bb1f4cf7799f5fbae9 /buch/papers/clifford/3d/drehung.pov
parentMerge remote-tracking branch 'origin/Baer' (diff)
parentübergang Endlichekörper vereinfacht. (diff)
downloadSeminarMatrizen-8c9e230971ad761f566de42dbd5c9230d4e0dc1e.tar.gz
SeminarMatrizen-8c9e230971ad761f566de42dbd5c9230d4e0dc1e.zip
Merge branch 'Baer' up to date
Diffstat (limited to '')
-rw-r--r--buch/papers/clifford/3d/drehung.pov37
1 files changed, 2 insertions, 35 deletions
diff --git a/buch/papers/clifford/3d/drehung.pov b/buch/papers/clifford/3d/drehung.pov
index 54b5a2e..b86a2c5 100644
--- a/buch/papers/clifford/3d/drehung.pov
+++ b/buch/papers/clifford/3d/drehung.pov
@@ -60,24 +60,6 @@ mesh {
}
}
-union {
- #declare phi = 0;
- #declare phimax = 2*pi/3;
- #declare phistep = (phimax - phi) / N;
- #while (phi < phimax - phistep/2)
- cylinder {
- r * (cos(phi ) * e1 + sin(phi ) * e2),
- r * (cos(phi+phistep) * e1 + sin(phi+phistep) * e2),
- 0.01
- }
- sphere { r * (cos(phi ) * e1 + sin(phi ) * e2), 0.01 }
- #declare phi = phi + phistep;
- #end
- pigment {
- color Blue
- }
-}
-
mesh {
#declare phi = 0;
#declare phimax = 2*pi/3;
@@ -100,21 +82,6 @@ mesh {
}
}
-union {
- #declare phi = 0;
- #declare phimax = 2*pi/3;
- #declare phistep = (phimax - phi) / N;
- #while (phi < phimax - phistep/2)
- cylinder {
- r * (cos(phi ) * e1 + sin(phi ) * e2) + Vparallel,
- r * (cos(phi+phistep) * e1 + sin(phi+phistep) * e2) + Vparallel,
- 0.01
- }
- sphere { r * (cos(phi ) * e1 + sin(phi ) * e2) + Vparallel, 0.01 }
- #declare phi = phi + phistep;
- #end
- pigment {
- color Green
- }
-}
+bogen(r * e1, r * e2, <0,0,0>, 2*pi/3, Blue)
+bogen(r * e1, r * e2, Vparallel, 2*pi/3, Green)