From eceae67b3a13bc28acc446288429a90be2efa99d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Sat, 21 May 2022 12:45:42 +0200 Subject: curvature graph --- buch/papers/kugel/images/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 buch/papers/kugel/images/Makefile (limited to 'buch/papers/kugel/images/Makefile') diff --git a/buch/papers/kugel/images/Makefile b/buch/papers/kugel/images/Makefile new file mode 100644 index 0000000..8efa228 --- /dev/null +++ b/buch/papers/kugel/images/Makefile @@ -0,0 +1,13 @@ +# +# Makefile -- build images +# +# (c) 2022 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule +# +all: curvature.png + +curvature.inc: curvgraph.m + octave curvgraph.m + +curvature.png: curvature.pov curvature.inc + povray +A0.1 +W1920 +H1080 +Ocurvature.png curvature.pov + -- cgit v1.2.1 From ab62c3937cc111ce1d61d76f0bdf396a4a5a9297 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Sat, 21 May 2022 20:36:01 +0200 Subject: add image code --- buch/papers/kugel/images/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'buch/papers/kugel/images/Makefile') diff --git a/buch/papers/kugel/images/Makefile b/buch/papers/kugel/images/Makefile index 8efa228..e8bf919 100644 --- a/buch/papers/kugel/images/Makefile +++ b/buch/papers/kugel/images/Makefile @@ -3,7 +3,7 @@ # # (c) 2022 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule # -all: curvature.png +all: curvature.jpg curvature.inc: curvgraph.m octave curvgraph.m @@ -11,3 +11,5 @@ curvature.inc: curvgraph.m curvature.png: curvature.pov curvature.inc povray +A0.1 +W1920 +H1080 +Ocurvature.png curvature.pov +curvature.jpg: curvature.png + convert curvature.png -density 300 -units PixelsPerInch curvature.jpg -- cgit v1.2.1 From e8bb3fd399f2261c9b430ffa319626950499d4c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Mon, 23 May 2022 23:06:11 +0200 Subject: new spherical graph --- buch/papers/kugel/images/Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'buch/papers/kugel/images/Makefile') diff --git a/buch/papers/kugel/images/Makefile b/buch/papers/kugel/images/Makefile index e8bf919..6187fed 100644 --- a/buch/papers/kugel/images/Makefile +++ b/buch/papers/kugel/images/Makefile @@ -3,7 +3,7 @@ # # (c) 2022 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule # -all: curvature.jpg +all: curvature.jpg spherecurve.jpg curvature.inc: curvgraph.m octave curvgraph.m @@ -13,3 +13,13 @@ curvature.png: curvature.pov curvature.inc curvature.jpg: curvature.png convert curvature.png -density 300 -units PixelsPerInch curvature.jpg + +spherecurve.inc: spherecurve.m + octave spherecurve.m + +spherecurve.png: spherecurve.pov spherecurve.inc + povray +A0.1 +W1920 +H1080 +Ospherecurve.png spherecurve.pov + +spherecurve.jpg: spherecurve.png + convert spherecurve.png -density 300 -units PixelsPerInch spherecurve.jpg + -- cgit v1.2.1 From 6ee6a7b0cf91469c7a79827293b8e3b880a6a0aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Tue, 24 May 2022 11:45:50 +0200 Subject: add C++ program to compute the surface --- buch/papers/kugel/images/Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'buch/papers/kugel/images/Makefile') diff --git a/buch/papers/kugel/images/Makefile b/buch/papers/kugel/images/Makefile index 6187fed..4226dab 100644 --- a/buch/papers/kugel/images/Makefile +++ b/buch/papers/kugel/images/Makefile @@ -14,12 +14,17 @@ curvature.png: curvature.pov curvature.inc curvature.jpg: curvature.png convert curvature.png -density 300 -units PixelsPerInch curvature.jpg -spherecurve.inc: spherecurve.m +spherecurve2.inc: spherecurve.m octave spherecurve.m spherecurve.png: spherecurve.pov spherecurve.inc - povray +A0.1 +W1920 +H1080 +Ospherecurve.png spherecurve.pov + povray +A0.1 +W1080 +H1080 +Ospherecurve.png spherecurve.pov spherecurve.jpg: spherecurve.png convert spherecurve.png -density 300 -units PixelsPerInch spherecurve.jpg +spherecurve: spherecurve.cpp + g++ -o spherecurve -g -Wall -O spherecurve.cpp + +spherecurve.inc: spherecurve + ./spherecurve -- cgit v1.2.1