diff options
author | Andreas Müller <andreas.mueller@ost.ch> | 2022-05-24 11:45:50 +0200 |
---|---|---|
committer | Andreas Müller <andreas.mueller@ost.ch> | 2022-05-24 11:45:50 +0200 |
commit | 6ee6a7b0cf91469c7a79827293b8e3b880a6a0aa (patch) | |
tree | 99c6f23a3f2242653e610ec74e4b446f08db2c3f /buch/papers/kugel/images/Makefile | |
parent | new spherical graph (diff) | |
download | SeminarSpezielleFunktionen-6ee6a7b0cf91469c7a79827293b8e3b880a6a0aa.tar.gz SeminarSpezielleFunktionen-6ee6a7b0cf91469c7a79827293b8e3b880a6a0aa.zip |
add C++ program to compute the surface
Diffstat (limited to 'buch/papers/kugel/images/Makefile')
-rw-r--r-- | buch/papers/kugel/images/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
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 |