aboutsummaryrefslogtreecommitdiffstats
path: root/buch/papers/clifford/3d/dq.pov
diff options
context:
space:
mode:
authorAndreas Müller <andreas.mueller@ost.ch>2021-08-04 20:24:32 +0200
committerAndreas Müller <andreas.mueller@ost.ch>2021-08-04 20:24:32 +0200
commit100898f1bdf1f00e3f8ba8ddb68703bcbed1e77e (patch)
tree940badf859e78612708f3cfbd5f545f0bbc9bb7e /buch/papers/clifford/3d/dq.pov
parentMerge branch 'master' of github.com:AndreasFMueller/SeminarMatrizen (diff)
downloadSeminarMatrizen-100898f1bdf1f00e3f8ba8ddb68703bcbed1e77e.tar.gz
SeminarMatrizen-100898f1bdf1f00e3f8ba8ddb68703bcbed1e77e.zip
add new image stuff
Diffstat (limited to 'buch/papers/clifford/3d/dq.pov')
-rw-r--r--buch/papers/clifford/3d/dq.pov25
1 files changed, 25 insertions, 0 deletions
diff --git a/buch/papers/clifford/3d/dq.pov b/buch/papers/clifford/3d/dq.pov
new file mode 100644
index 0000000..92b702a
--- /dev/null
+++ b/buch/papers/clifford/3d/dq.pov
@@ -0,0 +1,25 @@
+//
+// dq.pov -- Drehung und Quaternion
+//
+// (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
+//
+#include "common.inc"
+
+arrow(<0,0,0>, <1, sqrt(2), 2>, r, Red)
+
+#declare r = 0.2 * r;
+
+circlearrow(<1,0,0>, <0,0,1>, <1, sqrt(2), 0>, 1, 0.022)
+circlearrow(<1,0,0>, <0,1,0>, <1, 0, 2>, sqrt(2)/2, 0.022)
+circlearrow(<0,0,1>, <1,0,0>, <0, sqrt(2), 2>, 0.5, 0.022)
+
+#declare l = 2.8;
+#declare h = 0.0001;
+union {
+ box { <-l,-l,-h>, <l,l,-h> }
+ box { <-l,-h,-l>, <l,-h,l> }
+ box { <-h,-l,-l>, <-h,l,l> }
+ pigment {
+ color rgbt<0.6,0.6,0.6,0.0>
+ }
+}