ctioga 1.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (103) hide show
  1. data/COPYING +340 -0
  2. data/ctioga/bin/ctable +28 -0
  3. data/ctioga/bin/ctioga +37 -0
  4. data/ctioga/doc/ctable.1 +156 -0
  5. data/ctioga/doc/ctioga.1 +2363 -0
  6. data/ctioga/examples/README +46 -0
  7. data/ctioga/examples/ctioga.gnuplot +4 -0
  8. data/ctioga/examples/ctioga_within_tioga.rb +53 -0
  9. data/ctioga/examples/ctiogarc.rb +24 -0
  10. data/ctioga/examples/include_1.rb +15 -0
  11. data/ctioga/examples/noise.dat +100 -0
  12. data/ctioga/examples/noise.rb +13 -0
  13. data/ctioga/examples/trig.csv +100 -0
  14. data/ctioga/examples/trig.dat +100 -0
  15. data/ctioga/examples/trig.rb +14 -0
  16. data/ctioga/examples/trigh.dat +100 -0
  17. data/ctioga/examples/trigh.rb +10 -0
  18. data/ctioga/examples/tutorial +763 -0
  19. data/ctioga/examples/tutorial.sh +269 -0
  20. data/ctioga/tests/README +14 -0
  21. data/ctioga/tests/axes.sh +40 -0
  22. data/ctioga/tests/basic.sh +11 -0
  23. data/ctioga/tests/draw.sh +24 -0
  24. data/ctioga/tests/histograms.sh +14 -0
  25. data/ctioga/tests/insets.sh +41 -0
  26. data/ctioga/tests/layouts.sh +29 -0
  27. data/ctioga/tests/legends.sh +113 -0
  28. data/ctioga/tests/styles.sh +43 -0
  29. data/ctioga/tests/test_style.sh +8 -0
  30. data/ctioga/tests/tests.sh +24 -0
  31. data/ctioga/tests/text_backend.sh +83 -0
  32. data/ctioga/tests/tioga_defaults.rb +18 -0
  33. data/lib/CTioga/axes.rb +904 -0
  34. data/lib/CTioga/backends.rb +88 -0
  35. data/lib/CTioga/boundaries.rb +224 -0
  36. data/lib/CTioga/ctable.rb +134 -0
  37. data/lib/CTioga/curve_style.rb +246 -0
  38. data/lib/CTioga/debug.rb +199 -0
  39. data/lib/CTioga/dimension.rb +133 -0
  40. data/lib/CTioga/elements.rb +17 -0
  41. data/lib/CTioga/elements/base.rb +84 -0
  42. data/lib/CTioga/elements/containers.rb +578 -0
  43. data/lib/CTioga/elements/curves.rb +368 -0
  44. data/lib/CTioga/elements/tioga_primitives.rb +440 -0
  45. data/lib/CTioga/layout.rb +595 -0
  46. data/lib/CTioga/legends.rb +29 -0
  47. data/lib/CTioga/legends/cmdline.rb +187 -0
  48. data/lib/CTioga/legends/item.rb +164 -0
  49. data/lib/CTioga/legends/style.rb +257 -0
  50. data/lib/CTioga/log.rb +73 -0
  51. data/lib/CTioga/movingarrays.rb +131 -0
  52. data/lib/CTioga/partition.rb +271 -0
  53. data/lib/CTioga/plot_style.rb +230 -0
  54. data/lib/CTioga/plotmaker.rb +1677 -0
  55. data/lib/CTioga/shortcuts.rb +69 -0
  56. data/lib/CTioga/structures.rb +82 -0
  57. data/lib/CTioga/styles.rb +140 -0
  58. data/lib/CTioga/themes.rb +581 -0
  59. data/lib/CTioga/themes/classical.rb +82 -0
  60. data/lib/CTioga/themes/demo.rb +63 -0
  61. data/lib/CTioga/themes/fits.rb +91 -0
  62. data/lib/CTioga/themes/mono.rb +33 -0
  63. data/lib/CTioga/tioga.rb +32 -0
  64. data/lib/CTioga/utils.rb +173 -0
  65. data/lib/MetaBuilder/Parameters/dates.rb +38 -0
  66. data/lib/MetaBuilder/Parameters/lists.rb +132 -0
  67. data/lib/MetaBuilder/Parameters/numbers.rb +69 -0
  68. data/lib/MetaBuilder/Parameters/strings.rb +86 -0
  69. data/lib/MetaBuilder/Parameters/styles.rb +75 -0
  70. data/lib/MetaBuilder/Qt4/Parameters/dates.rb +51 -0
  71. data/lib/MetaBuilder/Qt4/Parameters/numbers.rb +65 -0
  72. data/lib/MetaBuilder/Qt4/Parameters/strings.rb +106 -0
  73. data/lib/MetaBuilder/Qt4/parameter.rb +172 -0
  74. data/lib/MetaBuilder/Qt4/parameters.rb +9 -0
  75. data/lib/MetaBuilder/descriptions.rb +603 -0
  76. data/lib/MetaBuilder/factory.rb +101 -0
  77. data/lib/MetaBuilder/group.rb +57 -0
  78. data/lib/MetaBuilder/metabuilder.rb +10 -0
  79. data/lib/MetaBuilder/parameter.rb +374 -0
  80. data/lib/MetaBuilder/parameters.rb +11 -0
  81. data/lib/MetaBuilder/qt4.rb +8 -0
  82. data/lib/SciYAG/Backends/backend.rb +379 -0
  83. data/lib/SciYAG/Backends/binner.rb +168 -0
  84. data/lib/SciYAG/Backends/cache.rb +102 -0
  85. data/lib/SciYAG/Backends/dataset.rb +158 -0
  86. data/lib/SciYAG/Backends/descriptions.rb +469 -0
  87. data/lib/SciYAG/Backends/filters.rb +25 -0
  88. data/lib/SciYAG/Backends/filters/average.rb +134 -0
  89. data/lib/SciYAG/Backends/filters/cumulate.rb +37 -0
  90. data/lib/SciYAG/Backends/filters/filter.rb +70 -0
  91. data/lib/SciYAG/Backends/filters/norm.rb +39 -0
  92. data/lib/SciYAG/Backends/filters/smooth.rb +63 -0
  93. data/lib/SciYAG/Backends/filters/sort.rb +43 -0
  94. data/lib/SciYAG/Backends/filters/strip.rb +34 -0
  95. data/lib/SciYAG/Backends/filters/trim.rb +64 -0
  96. data/lib/SciYAG/Backends/gnuplot.rb +131 -0
  97. data/lib/SciYAG/Backends/math.rb +108 -0
  98. data/lib/SciYAG/Backends/mdb.rb +462 -0
  99. data/lib/SciYAG/Backends/multitext.rb +96 -0
  100. data/lib/SciYAG/Backends/source.rb +64 -0
  101. data/lib/SciYAG/Backends/text.rb +339 -0
  102. data/lib/SciYAG/backends.rb +16 -0
  103. metadata +191 -0
@@ -0,0 +1,46 @@
1
+ In this directory, you will find few data files you can play with,
2
+ along with the ruby scripts that did generate them. You will also find some
3
+ examples of files that can be used with --include (or configuration files).
4
+
5
+
6
+ trig.rb: basic sine and cosine, try
7
+
8
+ ctioga trig.dat
9
+ ctioga trig.dat @1:3
10
+ ctioga trig.dat @1:3 -l sum '@$1:$2 + $3'
11
+ ctioga trig.dat @1:3 -l 'sum squared' '@$1:$2**2 + $3**2'
12
+ ctioga trig.dat@2:3
13
+
14
+ or, it looks better like
15
+
16
+ ctioga --aspect-ratio 1 -l 'Nice circle' trig.dat@2:3
17
+
18
+ with the use of x and y ranges:
19
+ ctioga --yrange -.8:.8 trig.dat
20
+ ctioga --xrange -3:13 trig.dat
21
+
22
+
23
+
24
+ include_1.rb: small examples of user-defined functions
25
+
26
+ ctioga --math --include include_1.rb 'pol(x)'
27
+
28
+ the same between -1 and 1:
29
+
30
+ ctioga --math --math-xrange -1:1 --include include_1.rb 'pol(x)'
31
+
32
+ --include takes effect as soon as it is used on the command-line; see
33
+ how it redefines sin(x) in this case:
34
+
35
+ ctioga --math -l 'Before include' 'sin(x)' \
36
+ --include include_1.rb -l 'After include' 'sin(x)'
37
+
38
+ function definitions are also available for the text backend, see
39
+
40
+ ctioga --include include_1.rb 'trig.dat@$1:pol($3)'
41
+
42
+
43
+ ctiogarc.rb: small examples of customization
44
+
45
+ copy it to .ctiogarc to see the effects. (you can also use --include
46
+ ctiogarc.rb but you will miss features in ctioga_defaults).
@@ -0,0 +1,4 @@
1
+ set term postscript
2
+ a = 10
3
+ b = 4
4
+ plot [2:12] x**2 - a*x + b
@@ -0,0 +1,53 @@
1
+ # An example file showing the possible interactions
2
+ # between ctioga and Tioga.
3
+
4
+ require 'CTioga/tioga'
5
+
6
+ class MyFigures
7
+
8
+ include Tioga
9
+ include FigureConstants
10
+
11
+ def t
12
+ @figure_maker
13
+ end
14
+
15
+ def initialize
16
+ @figure_maker = FigureMaker.default
17
+ t.def_figure("Blue") { blue }
18
+ t.def_figure("Red") { red }
19
+ t.def_figure_ctioga("CTiogaFigure", '--math 3*sin(x)')
20
+ t.def_figure("CTiogaShowPlot") { row_triplets }
21
+ t.save_dir = 'figures_out'
22
+ end
23
+
24
+ def row_triplets
25
+ row_margin = -0.02
26
+ t.rescale(0.7)
27
+ t.subplot(t.row_margins('num_rows' => 3, 'row' => 1,
28
+ 'row_margin' => row_margin)) {
29
+ t.show_plot_ctioga('--math -c Pink cos(x)')
30
+ }
31
+ t.subplot(t.row_margins('num_rows' => 3, 'row' => 2,
32
+ 'row_margin' => row_margin)) {
33
+ t.show_plot_ctioga('--math -c Orange sin(x)')
34
+ }
35
+ t.subplot(t.row_margins('num_rows' => 3, 'row' => 3,
36
+ 'row_margin' => row_margin)) {
37
+ t.show_plot_ctioga('--math -c Violet sin(x)')
38
+ }
39
+ end
40
+
41
+ def blue
42
+ t.fill_color = Blue
43
+ t.fill_frame
44
+ end
45
+
46
+ def red
47
+ t.fill_color = Red
48
+ t.fill_frame
49
+ end
50
+
51
+ end
52
+
53
+ MyFigures.new
@@ -0,0 +1,24 @@
1
+ def ctioga_init(t)
2
+ # Uncomment this option to set the output dir to other than the current
3
+ # t.save_dir = "dir"
4
+
5
+ # We set the aspect ratio for everything to be 2
6
+ t.set_aspect_ratio(2)
7
+
8
+ # Here, we tweak a bit ctioga's internals: we set @viewer to 'xpdf',
9
+ # meaning that ctioga will launch automatically xpdf at the end of the plot:
10
+ @viewer = "xpdf"
11
+ end
12
+
13
+ # Remember that the function ctioga_default will be executed only if it
14
+ # is in a configuration file, that is .ctiogarc or $HOME/.ctiogarc but
15
+ # not when included with --include.
16
+ def ctioga_default
17
+ # Style specification have to be in this function, they would not be
18
+ # taken into account in ctioga_init
19
+
20
+ # turns markers on by default:
21
+ @markers.reset
22
+ # The following would set markers to Bullets
23
+ # @markers.set_static_value(Tioga::FigureConstants::Bullet)
24
+ end
@@ -0,0 +1,15 @@
1
+ # In this file, there are some examples of how we can define
2
+ # mathematical functions and use them. See the README file for
3
+ # more details. You don't need to include Math as it will be done
4
+ # automatically by backends.
5
+
6
+
7
+ # We define a simple polynom
8
+ def pol(x)
9
+ (1.0 - x) * (1.0 + x)
10
+ end
11
+
12
+ # here, we redefine sin(x)
13
+ def sin(x)
14
+ cos(x)
15
+ end
@@ -0,0 +1,100 @@
1
+ -5.173174556123 -1.83697019872103e-16 0.444651887008756
2
+ -4.15762450331486 -0.0950560433041825 -0.52674311454806
3
+ 4.24110358159909 -0.189251244360411 -0.454031931717764
4
+ 4.82779940292095 -0.28173255684143 0.115154390324756
5
+ 4.74617994553164 -0.371662455660328 0.0337845349282436
6
+ -4.14208717606889 -0.458226521727411 -0.539886113501472
7
+ -4.48747725054266 -0.540640817455597 -0.223020316032854
8
+ -4.1914158837035 -0.618158986220605 -0.497724374421935
9
+ -4.05123188237781 -0.690079011482112 -0.614030539762359
10
+ 3.93727866452652 -0.755749574354258 -0.699794883058282
11
+ 4.16257785069027 -0.814575952050336 -0.522526203041976
12
+ -4.16230846192208 -0.866025403784439 -0.522755871200093
13
+ 3.32556977353436 -0.909631995354519 -0.983123891622835
14
+ 3.1328795453529 -0.945000818714668 -0.999962041112575
15
+ -3.37336954808415 -0.971811568323542 -0.973259766107777
16
+ 2.81662495422526 -0.989821441880933 -0.947661039797152
17
+ -3.39911528496462 -0.998867339183008 -0.967023895238636
18
+ 3.02924704197577 -0.998867339183008 -0.993695866616191
19
+ 2.71500622931792 -0.989821441880933 -0.910383471107985
20
+ -3.12615552538342 -0.971811568323542 -0.99988084990257
21
+ 2.38384695719549 -0.945000818714668 -0.726387205757511
22
+ -2.33963590423696 -0.909631995354518 -0.695301690377704
23
+ -3.05487802114722 -0.866025403784439 -0.996242641577653
24
+ -2.27822999283889 -0.814575952050336 -0.649885416814319
25
+ -2.36770274108845 -0.755749574354258 -0.715197339775831
26
+ -2.33817448554887 -0.690079011482112 -0.694250600345874
27
+ 2.32023640333238 -0.618158986220605 -0.681228963428059
28
+ -2.00764799232271 -0.540640817455598 -0.423088897965211
29
+ 1.94893889280811 -0.45822652172741 -0.369194897299449
30
+ 2.37464813937645 -0.371662455660328 -0.720034346426475
31
+ -2.23350077312476 -0.28173255684143 -0.615251098783988
32
+ 1.37816814478322 -0.18925124436041 0.19143912561546
33
+ -1.27931006645747 -0.0950560433041827 0.287376108616401
34
+ -1.32327705869349 5.0532154980743e-16 0.244999588502959
35
+ -1.34403441810246 0.0950560433041828 0.224823513156782
36
+ -1.68719778182074 0.18925124436041 -0.116138773365459
37
+ -1.32740350450008 0.28173255684143 0.240996829116267
38
+ -1.62509932779333 0.371662455660328 -0.0542763166741455
39
+ -0.814641746879391 0.45822652172741 0.686129059403815
40
+ 1.19703557454446 0.540640817455598 0.36511911865606
41
+ 1.35371798112605 0.618158986220605 0.2153774607173
42
+ -1.10449053214242 0.690079011482112 0.449589566231858
43
+ 1.03271107586269 0.755749574354258 0.5124927532797
44
+ -0.988646725134226 0.814575952050336 0.549820730757941
45
+ 0.758856593139241 0.866025403784438 0.725623254258399
46
+ 0.462892007373142 0.909631995354518 0.894764850959081
47
+ -0.00611386878741704 0.945000818714668 0.999981310362443
48
+ 0.405825465228639 0.971811568323542 0.918776835281714
49
+ -0.155976491474325 0.989821441880933 0.987860308895388
50
+ -0.523815317630387 0.998867339183008 0.86591711246508
51
+ 0.450983771486464 0.998867339183008 0.900018760002474
52
+ 0.207709932415562 0.989821441880933 0.978505736969962
53
+ 0.0189312774493345 0.971811568323542 0.99982080871891
54
+ -0.12106484448179 0.945000818714668 0.992680598124912
55
+ -0.21881600871756 0.909631995354518 0.976155147217841
56
+ -0.588819131427027 0.866025403784439 0.831597088841867
57
+ 0.531394421985573 0.814575952050336 0.862101305111424
58
+ -0.658712313044774 0.755749574354258 0.790781078893638
59
+ -0.841656405061309 0.690079011482113 0.666228480121307
60
+ 0.986233830816085 0.618158986220605 0.551834577103597
61
+ -0.790559809495039 0.540640817455597 0.703447542878408
62
+ -0.926958241926243 0.45822652172741 0.600269546789331
63
+ 0.788564894363801 0.371662455660328 0.704864022492741
64
+ 1.68010685817251 0.28173255684143 -0.109092973257409
65
+ -1.5072516014072 0.18925124436041 0.063501969139616
66
+ -1.0626422935125 0.0950560433041833 0.486565358729318
67
+ -1.93415938562679 -8.26946079742758e-16 -0.355419711282699
68
+ 1.41070452585114 -0.0950560433041831 0.159408834339112
69
+ 1.29720743027427 -0.18925124436041 0.270188585507952
70
+ 2.23868714659236 -0.28173255684143 -0.619331385850942
71
+ 2.13342838798347 -0.371662455660328 -0.533414382680065
72
+ -1.86169253900761 -0.45822652172741 -0.286810900015987
73
+ -1.6988535843177 -0.540640817455597 -0.127707549786114
74
+ 2.13288651185742 -0.618158986220605 -0.532955956266327
75
+ -2.75467761256493 -0.690079011482112 -0.92607752249717
76
+ -2.20103918704116 -0.755749574354258 -0.589340978325792
77
+ 2.91493825623636 -0.814575952050335 -0.974423666641927
78
+ 2.71332945701488 -0.866025403784439 -0.909688401007414
79
+ 2.38904703070379 -0.909631995354518 -0.729951304778069
80
+ -3.00602069064983 -0.945000818714668 -0.99082418845625
81
+ -3.400824138538 -0.971811568323542 -0.966587263006338
82
+ 2.78557780798062 -0.989821441880933 -0.937293255477488
83
+ 2.77439973575262 -0.998867339183008 -0.933338755269546
84
+ -2.68928787846781 -0.998867339183008 -0.899442213917074
85
+ -3.57068748851692 -0.989821441880933 -0.909342714145002
86
+ 3.68615494266689 -0.971811568323542 -0.855354126116849
87
+ 2.99745692675461 -0.945000818714668 -0.989630417221713
88
+ -3.52842221496663 -0.909631995354519 -0.926109773431829
89
+ 3.82847897942094 -0.866025403784439 -0.773224242577139
90
+ 3.9537459790852 -0.814575952050336 -0.687937209582229
91
+ -4.33274465025718 -0.755749574354258 -0.370590147926505
92
+ 4.41017809653482 -0.690079011482111 -0.297631620703462
93
+ 3.90966412026944 -0.618158986220605 -0.719251853741011
94
+ -4.57773470180168 -0.540640817455597 -0.134247727158509
95
+ -4.21503406431718 -0.458226521727411 -0.477102584635125
96
+ 3.9793877451259 -0.371662455660328 -0.669103071953656
97
+ -4.72850262198834 -0.28173255684143 0.0161129442963553
98
+ 4.46318982253413 -0.189251244360411 -0.246627934095012
99
+ 4.33659144550784 -0.0950560433041816 -0.367014524803031
100
+ 4.62784254953858 -1.83697019872103e-16 -0.0844457424635149
@@ -0,0 +1,13 @@
1
+ # Small script for generating sine and cosine:
2
+ # use it this way:
3
+ # ruby trig.rb > trig.dat
4
+
5
+ include Math # can come in useful
6
+
7
+ 100.times do |i|
8
+ x = (-1.5 * PI + i * 1.5 * PI / 49.5).to_f
9
+ alea = rand - 0.5
10
+ alea2= rand - 0.5
11
+ signum = (alea>0)?-1:1
12
+ puts "#{signum*x+alea2}\t#{cos(signum*x)}\t#{cos(signum*x+alea2)}"
13
+ end
@@ -0,0 +1,100 @@
1
+ -3.14159265358979;-1.22464679914735e-16;-1.0;-0.2
2
+ -3.07812613533545;-0.0634239196565648;-0.997986676471884;-0.199899308476637
3
+ -3.01465961708111;-0.126592453573749;-0.991954812830795;-0.199597335294377
4
+ -2.95119309882678;-0.18925124436041;-0.981928697262707;-0.199094384514617
5
+ -2.88772658057244;-0.251147987181079;-0.967948701396356;-0.198390962566159
6
+ -2.8242600623181;-0.312033445698487;-0.950071117740945;-0.197487777735279
7
+ -2.76079354406376;-0.371662455660328;-0.928367933016073;-0.196385739452541
8
+ -2.69732702580942;-0.429794912089172;-0.902926538286621;-0.195085957377081
9
+ -2.63386050755508;-0.486196736100469;-0.873849377069785;-0.193589740279271
10
+ -2.57039398930074;-0.540640817455598;-0.841253532831181;-0.191898594722899
11
+ -2.5069274710464;-0.59290792905464;-0.805270257531059;-0.190014223548189
12
+ -2.44346095279206;-0.642787609686539;-0.766044443118978;-0.187938524157182
13
+ -2.37999443453772;-0.690079011482112;-0.72373403810507;-0.185673586603215
14
+ -2.31652791628338;-0.734591708657533;-0.678509411557132;-0.183221691486414
15
+ -2.25306139802904;-0.776146464291757;-0.630552667084523;-0.180585307657324
16
+ -2.1895948797747;-0.814575952050336;-0.580056909571198;-0.177767089730985
17
+ -2.12612836152037;-0.849725429949514;-0.527225467610502;-0.174769875413957
18
+ -2.06266184326603;-0.881453363447582;-0.472271074772683;-0.171596682646995
19
+ -1.99919532501169;-0.909631995354518;-0.415415013001886;-0.168250706566236
20
+ -1.93572880675735;-0.934147860265107;-0.356886221591872;-0.164735316285967
21
+ -1.87226228850301;-0.954902241444074;-0.296920375328275;-0.161054051506212
22
+ -1.80879577024867;-0.971811568323542;-0.235758935509427;-0.157210618948558
23
+ -1.74532925199433;-0.984807753012208;-0.173648177666931;-0.153208888623796
24
+ -1.68186273373999;-0.993838464461254;-0.110838199901011;-0.149052889935151
25
+ -1.61839621548565;-0.998867339183008;-0.0475819158237423;-0.144746807621014
26
+ -1.55492969723131;-0.999874127673875;0.0158659638348082;-0.140294977541264
27
+ -1.49146317897697;-0.996854775951942;0.0792499568567887;-0.135701882311426
28
+ -1.42799666072263;-0.989821441880933;0.142314838273285;-0.130972146789057
29
+ -1.36453014246829;-0.978802446214779;0.204806668065191;-0.126110533416905
30
+ -1.30106362421395;-0.963842158559942;0.266473813690035;-0.121121937427533
31
+ -1.23759710595962;-0.945000818714668;0.327067963317422;-0.11601138191424
32
+ -1.17413058770528;-0.922354294104581;0.386345125693129;-0.110784012773222
33
+ -1.11066406945094;-0.895993774291336;0.444066612605774;-0.1054450935221
34
+ -1.0471975511966;-0.866025403784439;0.5;-0.1
35
+ -0.983731032942258;-0.832569854634771;0.55392006386611;-0.0944542149545365
36
+ -0.920264514687919;-0.795761840530832;0.605609687137667;-0.0888133225211548
37
+ -0.85679799643358;-0.755749574354258;0.654860733945285;-0.0830830026003773
38
+ -0.79333147817924;-0.712694171378863;0.701474887706321;-0.0772690251386257
39
+ -0.729864959924901;-0.666769000516292;0.745264449675755;-0.0713772443183744
40
+ -0.666398441670562;-0.618158986220605;0.786053094742787;-0.0654135926634843
41
+ -0.602931923416223;-0.567059863862771;0.823676581429833;-0.059384075065655
42
+ -0.539465405161884;-0.513677391573407;0.857983413234977;-0.053294762738007
43
+ -0.475998886907544;-0.45822652172741;0.888835448654923;-0.0471517871018854
44
+ -0.412532368653205;-0.400930535406614;0.916108457432069;-0.0409613336130382
45
+ -0.349065850398866;-0.342020143325669;0.939692620785908;-0.0347296355333861
46
+ -0.285599332144526;-0.28173255684143;0.959492973614497;-0.028462967654657
47
+ -0.222132813890187;-0.220310532786541;0.975429786885407;-0.0221676399802022
48
+ -0.158666295635848;-0.15800139597335;0.987438888676394;-0.0158499913713577
49
+ -0.095199777381509;-0.0950560433041828;0.995471922573085;-0.00951638316474847
50
+ -0.03173325912717;-0.031727933498068;0.999496542383185;-0.00317319276696162
51
+ 0.03173325912717;0.031727933498068;0.999496542383185;0.00317319276696162
52
+ 0.095199777381509;0.0950560433041828;0.995471922573085;0.00951638316474847
53
+ 0.158666295635848;0.15800139597335;0.987438888676394;0.0158499913713577
54
+ 0.222132813890187;0.220310532786541;0.975429786885407;0.0221676399802022
55
+ 0.285599332144526;0.28173255684143;0.959492973614497;0.028462967654657
56
+ 0.349065850398866;0.342020143325669;0.939692620785908;0.0347296355333861
57
+ 0.412532368653205;0.400930535406613;0.91610845743207;0.0409613336130381
58
+ 0.475998886907544;0.45822652172741;0.888835448654924;0.0471517871018854
59
+ 0.539465405161884;0.513677391573407;0.857983413234977;0.053294762738007
60
+ 0.602931923416223;0.567059863862771;0.823676581429833;0.059384075065655
61
+ 0.666398441670562;0.618158986220605;0.786053094742788;0.0654135926634843
62
+ 0.729864959924901;0.666769000516292;0.745264449675755;0.0713772443183744
63
+ 0.79333147817924;0.712694171378863;0.701474887706321;0.0772690251386257
64
+ 0.85679799643358;0.755749574354258;0.654860733945285;0.0830830026003773
65
+ 0.920264514687919;0.795761840530832;0.605609687137667;0.0888133225211548
66
+ 0.983731032942258;0.832569854634771;0.55392006386611;0.0944542149545365
67
+ 1.0471975511966;0.866025403784438;0.5;0.1
68
+ 1.11066406945094;0.895993774291336;0.444066612605774;0.105445093522101
69
+ 1.17413058770528;0.922354294104581;0.386345125693129;0.110784012773222
70
+ 1.23759710595962;0.945000818714668;0.327067963317422;0.11601138191424
71
+ 1.30106362421395;0.963842158559942;0.266473813690035;0.121121937427533
72
+ 1.36453014246829;0.978802446214779;0.20480666806519;0.126110533416905
73
+ 1.42799666072263;0.989821441880933;0.142314838273285;0.130972146789057
74
+ 1.49146317897697;0.996854775951942;0.0792499568567887;0.135701882311426
75
+ 1.55492969723131;0.999874127673875;0.0158659638348075;0.140294977541264
76
+ 1.61839621548565;0.998867339183008;-0.0475819158237425;0.144746807621014
77
+ 1.68186273373999;0.993838464461254;-0.110838199901011;0.149052889935151
78
+ 1.74532925199433;0.984807753012208;-0.17364817766693;0.153208888623796
79
+ 1.80879577024867;0.971811568323542;-0.235758935509427;0.157210618948557
80
+ 1.87226228850301;0.954902241444074;-0.296920375328275;0.161054051506212
81
+ 1.93572880675735;0.934147860265107;-0.356886221591872;0.164735316285967
82
+ 1.99919532501169;0.909631995354519;-0.415415013001886;0.168250706566236
83
+ 2.06266184326603;0.881453363447582;-0.472271074772682;0.171596682646995
84
+ 2.12612836152037;0.849725429949514;-0.527225467610502;0.174769875413957
85
+ 2.1895948797747;0.814575952050336;-0.580056909571198;0.177767089730985
86
+ 2.25306139802904;0.776146464291757;-0.630552667084522;0.180585307657324
87
+ 2.31652791628338;0.734591708657534;-0.678509411557132;0.183221691486414
88
+ 2.37999443453772;0.690079011482113;-0.72373403810507;0.185673586603214
89
+ 2.44346095279206;0.64278760968654;-0.766044443118977;0.187938524157182
90
+ 2.5069274710464;0.59290792905464;-0.805270257531059;0.190014223548189
91
+ 2.57039398930074;0.540640817455597;-0.841253532831181;0.191898594722899
92
+ 2.63386050755508;0.486196736100469;-0.873849377069785;0.193589740279271
93
+ 2.69732702580942;0.429794912089172;-0.902926538286621;0.195085957377081
94
+ 2.76079354406376;0.371662455660328;-0.928367933016072;0.196385739452541
95
+ 2.8242600623181;0.312033445698487;-0.950071117740945;0.197487777735279
96
+ 2.88772658057244;0.251147987181079;-0.967948701396356;0.198390962566159
97
+ 2.95119309882678;0.18925124436041;-0.981928697262707;0.199094384514617
98
+ 3.01465961708111;0.12659245357375;-0.991954812830795;0.199597335294377
99
+ 3.07812613533545;0.0634239196565653;-0.997986676471884;0.199899308476637
100
+ 3.14159265358979;-7.6571373978539e-16;-1.0;0.2
@@ -0,0 +1,100 @@
1
+ -3.14159265358979 -1.22464679914735e-16 -1.0 -0.2
2
+ -3.07812613533545 -0.0634239196565648 -0.997986676471884 -0.199899308476637
3
+ -3.01465961708111 -0.126592453573749 -0.991954812830795 -0.199597335294377
4
+ -2.95119309882678 -0.189251244360411 -0.981928697262707 -0.199094384514617
5
+ -2.88772658057244 -0.251147987181079 -0.967948701396356 -0.198390962566159
6
+ -2.8242600623181 -0.312033445698487 -0.950071117740945 -0.197487777735279
7
+ -2.76079354406376 -0.371662455660328 -0.928367933016073 -0.196385739452541
8
+ -2.69732702580942 -0.429794912089172 -0.902926538286621 -0.195085957377081
9
+ -2.63386050755508 -0.486196736100469 -0.873849377069785 -0.193589740279271
10
+ -2.57039398930074 -0.540640817455598 -0.841253532831181 -0.191898594722899
11
+ -2.5069274710464 -0.592907929054641 -0.805270257531059 -0.190014223548189
12
+ -2.44346095279206 -0.642787609686539 -0.766044443118978 -0.187938524157182
13
+ -2.37999443453772 -0.690079011482112 -0.72373403810507 -0.185673586603215
14
+ -2.31652791628338 -0.734591708657533 -0.678509411557132 -0.183221691486414
15
+ -2.25306139802904 -0.776146464291757 -0.630552667084523 -0.180585307657324
16
+ -2.1895948797747 -0.814575952050336 -0.580056909571198 -0.177767089730985
17
+ -2.12612836152037 -0.849725429949514 -0.527225467610502 -0.174769875413957
18
+ -2.06266184326603 -0.881453363447582 -0.472271074772683 -0.171596682646995
19
+ -1.99919532501169 -0.909631995354518 -0.415415013001886 -0.168250706566236
20
+ -1.93572880675735 -0.934147860265107 -0.356886221591872 -0.164735316285967
21
+ -1.87226228850301 -0.954902241444074 -0.296920375328275 -0.161054051506212
22
+ -1.80879577024867 -0.971811568323542 -0.235758935509427 -0.157210618948558
23
+ -1.74532925199433 -0.984807753012208 -0.173648177666931 -0.153208888623796
24
+ -1.68186273373999 -0.993838464461254 -0.110838199901011 -0.149052889935151
25
+ -1.61839621548565 -0.998867339183008 -0.0475819158237423 -0.144746807621014
26
+ -1.55492969723131 -0.999874127673875 0.0158659638348082 -0.140294977541264
27
+ -1.49146317897697 -0.996854775951942 0.0792499568567887 -0.135701882311426
28
+ -1.42799666072263 -0.989821441880933 0.142314838273285 -0.130972146789057
29
+ -1.36453014246829 -0.978802446214779 0.204806668065191 -0.126110533416905
30
+ -1.30106362421395 -0.963842158559942 0.266473813690035 -0.121121937427533
31
+ -1.23759710595962 -0.945000818714669 0.327067963317422 -0.11601138191424
32
+ -1.17413058770528 -0.922354294104581 0.386345125693129 -0.110784012773222
33
+ -1.11066406945094 -0.895993774291336 0.444066612605774 -0.1054450935221
34
+ -1.0471975511966 -0.866025403784439 0.5 -0.1
35
+ -0.983731032942258 -0.832569854634771 0.55392006386611 -0.0944542149545365
36
+ -0.920264514687919 -0.795761840530832 0.605609687137667 -0.0888133225211548
37
+ -0.85679799643358 -0.755749574354258 0.654860733945285 -0.0830830026003773
38
+ -0.79333147817924 -0.712694171378863 0.701474887706321 -0.0772690251386257
39
+ -0.729864959924901 -0.666769000516292 0.745264449675755 -0.0713772443183744
40
+ -0.666398441670562 -0.618158986220605 0.786053094742787 -0.0654135926634843
41
+ -0.602931923416223 -0.567059863862771 0.823676581429833 -0.059384075065655
42
+ -0.539465405161884 -0.513677391573407 0.857983413234977 -0.053294762738007
43
+ -0.475998886907544 -0.45822652172741 0.888835448654923 -0.0471517871018855
44
+ -0.412532368653205 -0.400930535406614 0.916108457432069 -0.0409613336130382
45
+ -0.349065850398866 -0.342020143325669 0.939692620785908 -0.0347296355333861
46
+ -0.285599332144526 -0.28173255684143 0.959492973614497 -0.028462967654657
47
+ -0.222132813890187 -0.220310532786541 0.975429786885407 -0.0221676399802022
48
+ -0.158666295635848 -0.15800139597335 0.987438888676394 -0.0158499913713577
49
+ -0.095199777381509 -0.0950560433041828 0.995471922573085 -0.00951638316474847
50
+ -0.03173325912717 -0.031727933498068 0.999496542383185 -0.00317319276696162
51
+ 0.03173325912717 0.031727933498068 0.999496542383185 0.00317319276696162
52
+ 0.095199777381509 0.0950560433041828 0.995471922573085 0.00951638316474847
53
+ 0.158666295635848 0.15800139597335 0.987438888676394 0.0158499913713577
54
+ 0.222132813890187 0.220310532786541 0.975429786885407 0.0221676399802022
55
+ 0.285599332144526 0.28173255684143 0.959492973614497 0.028462967654657
56
+ 0.349065850398866 0.342020143325669 0.939692620785908 0.0347296355333861
57
+ 0.412532368653205 0.400930535406613 0.91610845743207 0.0409613336130381
58
+ 0.475998886907544 0.45822652172741 0.888835448654924 0.0471517871018854
59
+ 0.539465405161884 0.513677391573407 0.857983413234977 0.053294762738007
60
+ 0.602931923416223 0.567059863862771 0.823676581429833 0.059384075065655
61
+ 0.666398441670562 0.618158986220605 0.786053094742788 0.0654135926634843
62
+ 0.729864959924901 0.666769000516292 0.745264449675755 0.0713772443183744
63
+ 0.79333147817924 0.712694171378863 0.701474887706321 0.0772690251386257
64
+ 0.85679799643358 0.755749574354258 0.654860733945285 0.0830830026003773
65
+ 0.920264514687919 0.795761840530832 0.605609687137667 0.0888133225211548
66
+ 0.983731032942258 0.832569854634771 0.55392006386611 0.0944542149545365
67
+ 1.0471975511966 0.866025403784438 0.5 0.1
68
+ 1.11066406945094 0.895993774291336 0.444066612605774 0.105445093522101
69
+ 1.17413058770528 0.922354294104581 0.386345125693129 0.110784012773222
70
+ 1.23759710595962 0.945000818714668 0.327067963317422 0.11601138191424
71
+ 1.30106362421395 0.963842158559942 0.266473813690035 0.121121937427533
72
+ 1.36453014246829 0.978802446214779 0.20480666806519 0.126110533416905
73
+ 1.42799666072263 0.989821441880933 0.142314838273285 0.130972146789057
74
+ 1.49146317897697 0.996854775951942 0.0792499568567887 0.135701882311426
75
+ 1.55492969723131 0.999874127673875 0.0158659638348075 0.140294977541264
76
+ 1.61839621548565 0.998867339183008 -0.0475819158237425 0.144746807621014
77
+ 1.68186273373999 0.993838464461254 -0.110838199901011 0.149052889935151
78
+ 1.74532925199433 0.984807753012208 -0.17364817766693 0.153208888623796
79
+ 1.80879577024867 0.971811568323542 -0.235758935509427 0.157210618948557
80
+ 1.87226228850301 0.954902241444074 -0.296920375328275 0.161054051506212
81
+ 1.93572880675735 0.934147860265107 -0.356886221591872 0.164735316285967
82
+ 1.99919532501169 0.909631995354519 -0.415415013001886 0.168250706566236
83
+ 2.06266184326603 0.881453363447582 -0.472271074772682 0.171596682646995
84
+ 2.12612836152037 0.849725429949514 -0.527225467610502 0.174769875413957
85
+ 2.1895948797747 0.814575952050336 -0.580056909571198 0.177767089730985
86
+ 2.25306139802904 0.776146464291757 -0.630552667084522 0.180585307657324
87
+ 2.31652791628338 0.734591708657534 -0.678509411557132 0.183221691486414
88
+ 2.37999443453772 0.690079011482113 -0.72373403810507 0.185673586603214
89
+ 2.44346095279206 0.64278760968654 -0.766044443118977 0.187938524157182
90
+ 2.5069274710464 0.59290792905464 -0.805270257531059 0.190014223548189
91
+ 2.57039398930074 0.540640817455597 -0.841253532831181 0.191898594722899
92
+ 2.63386050755508 0.486196736100469 -0.873849377069785 0.193589740279271
93
+ 2.69732702580942 0.429794912089172 -0.902926538286621 0.195085957377081
94
+ 2.76079354406376 0.371662455660328 -0.928367933016072 0.196385739452541
95
+ 2.8242600623181 0.312033445698487 -0.950071117740945 0.197487777735279
96
+ 2.88772658057244 0.251147987181079 -0.967948701396356 0.198390962566159
97
+ 2.95119309882678 0.189251244360411 -0.981928697262707 0.199094384514617
98
+ 3.01465961708111 0.12659245357375 -0.991954812830795 0.199597335294377
99
+ 3.07812613533545 0.0634239196565653 -0.997986676471884 0.199899308476637
100
+ 3.14159265358979 -7.6571373978539e-16 -1.0 0.2