picrate 0.5.0-java → 0.6.0-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (97) hide show
  1. checksums.yaml +4 -4
  2. data/.mvn/wrapper/maven-wrapper.properties +1 -1
  3. data/CHANGELOG.md +3 -1
  4. data/README.md +1 -1
  5. data/Rakefile +8 -6
  6. data/docs/_editors/geany.md +5 -4
  7. data/docs/_editors/vim.md +6 -0
  8. data/docs/_includes/head.html +1 -0
  9. data/docs/_libraries/control_panel.md +2 -2
  10. data/docs/_libraries/gl_video.md +21 -0
  11. data/docs/_posts/2018-05-06-getting_started.md +10 -9
  12. data/docs/_posts/2018-05-06-install_jruby.md +19 -2
  13. data/docs/_posts/2018-06-26-auto_install_picrate.md +19 -4
  14. data/docs/_posts/2018-11-18-building-gem.md +18 -0
  15. data/docs/_posts/2018-11-27-getting_started_geany.md +38 -0
  16. data/docs/about.md +21 -10
  17. data/docs/assets/android-chrome-192x192.png +0 -0
  18. data/docs/assets/android-chrome-512x512.png +0 -0
  19. data/docs/assets/favicon.ico +0 -0
  20. data/docs/assets/geany.png +0 -0
  21. data/docs/assets/jwishy_picrate.png +0 -0
  22. data/docs/assets/picrate.svg +251 -0
  23. data/docs/index.html +8 -14
  24. data/lib/picrate/runner.rb +6 -2
  25. data/lib/picrate/version.rb +1 -1
  26. data/library/boids/boids.rb +10 -13
  27. data/mvnw +234 -0
  28. data/picrate.gemspec +2 -1
  29. data/pom.rb +1 -1
  30. data/pom.xml +1 -1
  31. data/src/main/java/japplemenubar/JAppleMenuBar.java +10 -2
  32. data/src/main/java/monkstone/ColorUtil.java +11 -1
  33. data/src/main/java/monkstone/MathToolModule.java +1 -0
  34. data/src/main/java/monkstone/PicrateLibrary.java +1 -0
  35. data/src/main/java/monkstone/fastmath/Deglut.java +1 -0
  36. data/src/main/java/monkstone/noise/SimplexNoise.java +3 -3
  37. data/src/main/java/monkstone/slider/CustomHorizontalSlider.java +1 -1
  38. data/src/main/java/monkstone/slider/CustomVerticalSlider.java +1 -1
  39. data/src/main/java/monkstone/slider/SimpleHorizontalSlider.java +1 -1
  40. data/src/main/java/monkstone/slider/SimpleSlider.java +8 -8
  41. data/src/main/java/monkstone/slider/SimpleVerticalSlider.java +1 -1
  42. data/src/main/java/monkstone/slider/Slider.java +3 -3
  43. data/src/main/java/monkstone/slider/SliderBar.java +1 -1
  44. data/src/main/java/monkstone/slider/SliderGroup.java +1 -1
  45. data/src/main/java/monkstone/vecmath/AppRender.java +1 -0
  46. data/src/main/java/monkstone/vecmath/JRender.java +1 -0
  47. data/src/main/java/monkstone/vecmath/ShapeRender.java +1 -0
  48. data/src/main/java/monkstone/vecmath/vec2/Vec2.java +8 -0
  49. data/src/main/java/monkstone/vecmath/vec3/Vec3.java +1 -0
  50. data/src/main/java/processing/awt/PGraphicsJava2D.java +85 -16
  51. data/src/main/java/processing/awt/PSurfaceAWT.java +1 -1
  52. data/src/main/java/processing/core/PApplet.java +18 -12
  53. data/src/main/java/processing/core/PShape.java +1182 -305
  54. data/src/main/java/processing/core/PStyle.java +1 -1
  55. data/src/main/java/processing/core/PSurface.java +1 -1
  56. data/src/main/java/processing/data/FloatDict.java +196 -54
  57. data/src/main/java/processing/data/FloatList.java +167 -54
  58. data/src/main/java/processing/data/IntDict.java +211 -56
  59. data/src/main/java/processing/data/IntList.java +185 -52
  60. data/src/main/java/processing/data/JSONArray.java +69 -20
  61. data/src/main/java/processing/data/JSONObject.java +53 -12
  62. data/src/main/java/processing/data/Sort.java +40 -10
  63. data/src/main/java/processing/data/StringDict.java +159 -49
  64. data/src/main/java/processing/data/StringList.java +147 -42
  65. data/src/main/java/processing/data/Table.java +778 -223
  66. data/src/main/java/processing/data/TableRow.java +26 -2
  67. data/src/main/java/processing/data/XML.java +190 -50
  68. data/src/main/java/processing/event/Event.java +93 -0
  69. data/src/main/java/processing/event/KeyEvent.java +55 -13
  70. data/src/main/java/processing/event/MouseEvent.java +77 -1
  71. data/src/main/java/processing/event/TouchEvent.java +14 -1
  72. data/src/main/java/processing/javafx/PGraphicsFX2D.java +8 -0
  73. data/src/main/java/processing/opengl/FrameBuffer.java +228 -66
  74. data/src/main/java/processing/opengl/LinePath.java +131 -27
  75. data/src/main/java/processing/opengl/LineStroker.java +30 -5
  76. data/src/main/java/processing/opengl/PGL.java +4066 -865
  77. data/src/main/java/processing/opengl/PGraphics2D.java +38 -10
  78. data/src/main/java/processing/opengl/PGraphics3D.java +38 -6
  79. data/src/main/java/processing/opengl/PGraphicsOpenGL.java +1980 -474
  80. data/src/main/java/processing/opengl/PJOGL.java +1460 -248
  81. data/src/main/java/processing/opengl/PShader.java +904 -217
  82. data/src/main/java/processing/opengl/PShapeOpenGL.java +1811 -487
  83. data/src/main/java/processing/opengl/PSurfaceJOGL.java +278 -71
  84. data/src/main/java/processing/opengl/Texture.java +610 -135
  85. data/src/main/java/processing/opengl/VertexBuffer.java +45 -9
  86. data/src/main/resources/icon/icon-1024.png +0 -0
  87. data/src/main/resources/icon/icon-128.png +0 -0
  88. data/src/main/resources/icon/icon-16.png +0 -0
  89. data/src/main/resources/icon/icon-256.png +0 -0
  90. data/src/main/resources/icon/icon-32.png +0 -0
  91. data/src/main/resources/icon/icon-48.png +0 -0
  92. data/src/main/resources/icon/icon-512.png +0 -0
  93. data/src/main/resources/icon/icon-64.png +0 -0
  94. data/vendors/Rakefile +1 -1
  95. metadata +13 -6
  96. data/docs/assets/circle_collisions.png +0 -0
  97. data/docs/favicon.ico +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 69f965460e585f0969e5365e8b8d774e437fedf421c7e95e1fabfb1c51f03578
4
- data.tar.gz: ccc029c85a4e901b4da67a56d44d1819c312554ba533780dce3b261e158ecfbb
3
+ metadata.gz: 00f6892195bf24cb8499f36e91c6bff8b26ccd9daf333134d56e56ca5a8b8276
4
+ data.tar.gz: b0c035e3c0fcd805ed138c8a95407b21e33ece9ae29fffb4b4443fc60d9ce7ac
5
5
  SHA512:
6
- metadata.gz: ec5076a7c966860094d980937c197c4b7477b12d77515bedaa2a7cf8848bd9ce59098b22ede31f99c9c386b51aa41e5325ad352734f43df5c1a7bcb1a37e0dec
7
- data.tar.gz: d2d04dc4b71e23ad97285548a6aec6700f97993122c9d7b306181042fc722e408888dbf2b7ec086254a8c91a09dca78e9283b8f025a0fc0c1aeb42c1b86bb15a
6
+ metadata.gz: e57716795bb80e84a92bc40f92dffeb5c0fe43184e093b978a8b06c4003b075bf64171669ca4537488d8f2041ae3e2bb3ad802ce0013f7dcb7e81a56905a7e63
7
+ data.tar.gz: 3ae4e5b88f878db84575d7eddcb03c87ddb3475a190fd269fd32a0baea9641a5debd151f4962949c98bac52ed3488049c71b772afd87752633f3077c29b91682
@@ -1 +1 @@
1
- distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.3.3/apache-maven-3.3.3-bin.zip
1
+ distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip
@@ -1,8 +1,10 @@
1
+ v0.6.0 Re-branding with new 'pick'/'eight' svg for PiCrate
2
+
1
3
  v0.5.0 Do geany configuration when installing samples
2
4
 
3
5
  v0.4.3 Update to jruby-9.2.4.0
4
6
 
5
- v0.4.2 Update to jruby-9.2.4.0
7
+ v0.4.2 Update to jruby-9.2.0.0
6
8
 
7
9
  v0.4.1 Proper sensible release since we can install from rubygems with jruby-9.2.1.0
8
10
 
data/README.md CHANGED
@@ -18,7 +18,7 @@ Requires maven, [jdk8][oracle] (but could be openjdk), and a jruby install.
18
18
  ```bash
19
19
  cd PiCrate
20
20
  rake # assumes an installed version of vanilla processing
21
- jgem install picrate-0.4.3-java.gem
21
+ jgem install picrate-0.6.0-java.gem
22
22
  ```
23
23
  To create a template sketch:-
24
24
  ```bash
data/Rakefile CHANGED
@@ -1,6 +1,8 @@
1
1
  # frozen_string_literal: false
2
2
  require_relative 'lib/picrate/version'
3
3
 
4
+ HOME_DIR = ENV['HOME']
5
+
4
6
  def create_manifest
5
7
  title = 'Implementation-Title: PiCrate'
6
8
  version = format('Implementation-Version: %s', PiCrate::VERSION)
@@ -17,8 +19,8 @@ task default: [:init, :compile, :install, :test, :gem]
17
19
  desc 'Create Manifest and Copy Jars'
18
20
  task :init do
19
21
  create_manifest
20
- fprocessing_root = File.dirname(`readlink -f $(which processing)`)
21
- # processing_root = '/home/tux/processing-3.4'
22
+ # processing_root = File.dirname(`readlink -f $(which processing)`) # for Archlinux etc
23
+ processing_root = File.join(HOME_DIR, 'processing-3.4') # alternative for debian linux etc
22
24
  jar_dir = File.join(processing_root, 'core', 'library')
23
25
  opengl = Dir.entries(jar_dir).grep(/amd64|armv6hf/).select { |jar| jar =~ /linux/ }
24
26
  opengl.concat %w[jogl-all.jar gluegen-rt.jar]
@@ -29,7 +31,7 @@ end
29
31
 
30
32
  desc 'Install'
31
33
  task :install do
32
- sh 'mv target/picrate-0.5.0.jar lib'
34
+ sh "mv target/picrate-#{PiCrate::VERSION}.jar lib"
33
35
  end
34
36
 
35
37
  desc 'Gem'
@@ -50,7 +52,7 @@ end
50
52
  desc 'Test'
51
53
  task :test do
52
54
  sh 'jruby test/helper_methods_test.rb'
53
- # sh 'jruby test/respond_to_test.rb' Skip test on Travis to avoid Headless fail
55
+ sh 'jruby test/respond_to_test.rb' # Skip this test on Travis etc
54
56
  sh 'jruby test/create_test.rb'
55
57
  sh 'jruby test/math_tool_test.rb'
56
58
  sh 'jruby test/deglut_spec_test.rb'
@@ -59,8 +61,8 @@ end
59
61
 
60
62
  desc 'clean'
61
63
  task :clean do
62
- Dir['./**/*.%w{jar gem}'].each do |path|
63
- puts 'Deleting #{path} ...'
64
+ Dir["./**/*.{jar,gem}"].each do |path|
65
+ puts "Deleting #{path} ..."
64
66
  File.delete(path)
65
67
  end
66
68
  FileUtils.rm_rf('./target')
@@ -4,13 +4,14 @@ title: "Geany"
4
4
  permalink: /editors/geany/
5
5
  keywords: editor, ide, ruby, picrate, vim, emacs, geany
6
6
  ---
7
- Geany is highly configurable, and comes pre-installed with the raspbian distribution. It is suggested that you use our [picrate.geany][project] file as the basis of your configuration. See also [this resource][github].
7
+ Geany is highly configurable, and we have created a `geany` project file `picrate.geany` and sketch template `picrate.rb` for you, thai get installed when you:-
8
+
9
+ ```bash
10
+ picrate --install samples
11
+ ```
8
12
 
9
13
  Use `make` to check syntax and `run` to run sketch
10
14
 
11
15
  See running sketch below:-
12
16
 
13
17
  ![geany]({{ site.github.url }}/assets/geany.png)
14
-
15
- [project]:https://gist.github.com/monkstone/0445e74f52f5d1fcf6cd772543715426
16
- [github]:https://github.com/ruby-processing/geany
@@ -4,6 +4,12 @@ title: "Vim"
4
4
  permalink: /editors/vim/
5
5
  keywords: editor, ide, ruby, picrate, vim, emacs, jedit
6
6
  ---
7
+ ### Install vim
8
+ You will probably need to install vim
9
+
10
+ ```bash
11
+ sudo apt-get install vim
12
+ ```
7
13
 
8
14
  Is an excellent choice for linux and mac users, it is lighweight (runs from the console) commands available from vim:-
9
15
  ```bash
@@ -13,4 +13,5 @@
13
13
  <link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
14
14
  <link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
15
15
  <link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" />
16
+ <link rel="icon" href="assets/android-chrome-192x192.png" | prepend: site.baseurl | prepend: site.url }}" type="image/x-icon">
16
17
  </head>
@@ -130,8 +130,8 @@ class JWishy < Processing::App
130
130
  def draw
131
131
  #.... rest of draw
132
132
  end
133
-
133
+ end
134
134
  ```
135
- ![JWishy]({{site.github.url}}/assets/jwishy.png)
135
+ ![JWishy]({{site.github.url}}/assets/jwishy_picrate.png)
136
136
 
137
137
  See also [penrose](https://github.com/ruby-processing/picrate-examples/blob/master/library/vecmath/vec2d/penrose.rb) and [bezier playground](https://github.com/ruby-processing/picrate-examples/blob/master/contributed/bezier_playground.rb) sketches. See ruby code [here](https://github.com/ruby-processing/picrate/blob/master/library/control_panel/control_panel.rb).
@@ -0,0 +1,21 @@
1
+ ---
2
+ layout: post
3
+ title: "glvideo<sup>5</sup>"
4
+ keywords: library, video, capture, processing, glstreamer-1.x
5
+ permalink: libraries/gl_video.html
6
+ ---
7
+ The GLVideo library developed by [gohai][gohai] uses a more current version glstreamer library than the regular pocessing library.
8
+
9
+ ```bash
10
+ sudo apt-get install gstreamer1.0-tools
11
+ ```
12
+
13
+ See [processing_wiki][glcapture] 'Video library: Capture' if you want to use the `RaspberryPI` camera.
14
+
15
+
16
+
17
+ [glcapture]:https://pi.processing.org/technical/
18
+
19
+ [gohai]:https://github.com/gohai/processing-glvideo
20
+
21
+
@@ -1,24 +1,22 @@
1
1
  ---
2
2
  layout: post
3
- title: "Getting Started"
3
+ title: "Getting Started Command Line"
4
4
  date: 2018-05-24 07:34:13
5
5
  categories: PiCrate update
6
6
  permalink: /getting/
7
7
  ---
8
- The current version of raspbian installs jdk-1.8.0_65-bi17 (hard float) and that is just fine, if you have more that one version of java installed you could use `update-alternatives` tool to control them.
8
+ The current version of raspbian installs jdk-1.8.0_65-bi17 (hard float) and that is just fine, if you have more that one version of java installed you could use `update-alternatives` tool to manage their use.
9
9
 
10
10
  Then install JRuby see [jruby][jruby].
11
11
 
12
-
13
-
14
12
  ```bash
15
13
  jgem install picrate
16
14
  ```
17
15
 
18
- Install samples
16
+ Install samples, and configure `geany` ide (for `PiCrate`)
19
17
 
20
18
  ```bash
21
- picrate -i Samples
19
+ picrate -i Samples # geany configuration files are installed if required
22
20
  ```
23
21
 
24
22
  Install processing libraries
@@ -28,7 +26,7 @@ picrate -i Sound
28
26
  picrate -i glvideo # preferred over vanilla video for now
29
27
  ```
30
28
 
31
- Create template
29
+ To create a template sketch from the command line:-
32
30
 
33
31
  ```bash
34
32
  picrate -c my_sketch 600 400
@@ -57,13 +55,13 @@ MySketch.new
57
55
 
58
56
  ```
59
57
 
60
- Edit in say vim
58
+ Edit in `vim` (at command line) or `geany` (gui), you may need to install `vim`
61
59
  ```bash
62
60
  vim my_sketch.rb
63
61
  :!jruby % # from vim runs the sketch
64
62
  ```
65
63
 
66
- Alternatively to run sketches
64
+ To run sketches from command line:-
67
65
 
68
66
  ```bash
69
67
  jruby my_sketch.rb
@@ -71,8 +69,11 @@ jruby my_sketch.rb
71
69
 
72
70
  Or even `chmod +x my_sketch.rb` to make an executable script.
73
71
 
72
+ See [editors][geany] geany, for how to run sketches from a gui.
73
+
74
74
  ### Circle Collision Sketch Running on RaspberryPI
75
75
 
76
76
  ![circle_collisions]({{ site.github.url }}/assets/circle_collisions.png)
77
77
 
78
78
  [jruby]:{{ site.github.url }}/install_jruby/
79
+ [geany]:{{ site.github.url }}/editors/geany
@@ -5,13 +5,27 @@ date: 2018-05-24 07:34:13
5
5
  categories: PiCrate update
6
6
  permalink: /install_jruby/
7
7
  ---
8
+
9
+ ### Automated install using Rakefile ###
10
+ Get the `Rakefile` [here][rake_gist]
11
+
12
+ ```bash
13
+ mkdir installer
14
+ cd installer
15
+ rake
16
+ ```
17
+ Currently installs jruby-9.2.4.1
18
+
19
+ ### Manual install ###
20
+
8
21
  Pure installation on raspbian no need for `rbenv` or `rvm`
9
22
 
23
+
10
24
  Get the latest version from [http://jruby.org/download][download]
11
25
 
12
26
  ```bash
13
27
  cd /opt
14
- sudo tar xzvf /pathToDownload/jruby-bin-9.2.4.0.tar.gz
28
+ sudo tar xzvf /pathToDownload/jruby-bin-9.2.4.1.tar.gz
15
29
  ```
16
30
 
17
31
  Then use the excellent `update-alternatives` tool to provide symbolic links to `jruby`, `jgem`, `jirb` and `rake` especially if you haven't installed `mri` ruby.
@@ -21,6 +35,8 @@ sudo update-alternatives --install /usr/bin/jruby jruby /opt/jruby{version}/bin/
21
35
  sudo update-alternatives --config jruby
22
36
  ```
23
37
 
38
+ ### GEM_HOME ###
39
+
24
40
  You should prefer to install gems locally (no need for sudo). To do that it is convenient on linux to edit your `~/.profile` (or equivalent eg `~./bashrc`) file as follows, the important thing is ensure that the gem bin directory is on your path.
25
41
 
26
42
  ```bash
@@ -33,4 +49,5 @@ export PATH="${PATH}:${GEM_PATH}/bin"
33
49
 
34
50
  If you know better please post on wiki
35
51
 
36
- [download]:https://s3.amazonaws.com/jruby.org/downloads/9.2.4.0/jruby-bin-9.2.4.0.tar.gz
52
+ [download]:"https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.2.4.1/jruby-dist-9.2.4.1-bin.tar.gz"
53
+ [rake_gist]:https://gist.github.com/monkstone/159c5a9813c9cd181040b4715e74f6b2
@@ -6,10 +6,25 @@ categories: PiCrate update
6
6
  permalink: /install_picrate/
7
7
  ---
8
8
 
9
- For a semi-automated setup and install, download and extract [this gist](https://gist.github.com/monkstone/8f06529790c36f5b7f668015faadcbc5/archive/94c5262e4fbe4bfbc615a40478255b48cc1eaf8c.zip)
9
+ For a semi-automated setup and install, download and extract [this gist](https://gist.github.com/monkstone/c7d7741f800eb2327253635ee283c7eb). To keep your system clean put the file in a folder say
10
+ `~/install_picrate`
10
11
 
11
12
  ```bash
12
- bash gem_environment.sh # sets up a local gem environment
13
- rake # default is to install jruby to opt, then link using update-alternatives
13
+ cd ~/install_picrate
14
+ rake # to run default task
14
15
  ```
15
- Adjust script to suit needs if required, now installs `gems` with `jgem` from `rubygems`.
16
+ #### What the script does ###
17
+ 1. Downloads JRuby (checks against sha256)
18
+ 2. Installs JRuby to `/opt`
19
+ 3. Uses `update-alternatives` to configure `jruby`, `jgem` and `jirb`
20
+ 4. The script checks for `GEM_HOME`, if undefined it modifies `~/.profile` to define `GEM_HOME` and puts gem binaries on your path, at logon.
21
+ 5. Installs `picrate` gem
22
+ 6. Downloads and installs `picrate_samples` also configures `geanyIDE` for use with `picrate`
23
+
24
+ #### Note ####
25
+ `GEM_HOME` and path to `gem` binaries is not available until next logon, to use immediately you could:-
26
+
27
+ ```bash
28
+ source ~/.profile
29
+ ```
30
+ NB: this only works in current shell, so if you want to use `geanyIDE` you should logout and logon again.
@@ -0,0 +1,18 @@
1
+ ---
2
+ layout: post
3
+ title: "Building PiCrate gem on Linux"
4
+ date: 2018-11-18 07:34:13
5
+ categories: PiCrate update
6
+ ---
7
+ Requirements:-
8
+
9
+ 1. An installed version of vanilla processing to provide `processing.org` customised version of the `jogl` jars. The default `Rakefile` assumes root installation of processing, for debian distros you will need to adjust `processing_root` _ca. line 20_.
10
+
11
+ 2. jdk-8 and maven
12
+
13
+ Simply clone this distribution, then rake to build and test gem
14
+ ```bash
15
+ git clone https://github.com/ruby-processing/PiCrate.git
16
+ cd PiCrate
17
+ rake # to build gem
18
+ ```
@@ -0,0 +1,38 @@
1
+ ---
2
+ layout: post
3
+ title: "Getting Started with Geany"
4
+ date: 2018-11-27 07:34:13
5
+ categories: PiCrate update
6
+ permalink: /geany_ide/
7
+ ---
8
+ The current version of raspbian installs jdk-1.8.0_65-bi17 (hard float) and that is just fine, if you have more that one version of java installed you could use `update-alternatives` tool to manage their use.
9
+
10
+ Then install JRuby see [jruby][jruby].
11
+
12
+ ```bash
13
+ jgem install picrate
14
+ ```
15
+
16
+ Install samples, and configure `geany` ide (for `PiCrate`)
17
+
18
+ ```bash
19
+ picrate -i Samples # geany configuration files are installed if required
20
+ ```
21
+
22
+ Install processing libraries
23
+
24
+ ```bash
25
+ picrate -i Sound
26
+ picrate -i glvideo # preferred over vanilla video for now
27
+ ```
28
+
29
+ ### Creating Sketches from the GeanyIDE
30
+
31
+ See [editors][geany] geany, for how to run sketches from a gui.
32
+
33
+ ### Running PiCrate sketch on RaspberryPI from geany editor
34
+
35
+ ![snake_kolam]({{ site.github.url }}/assets/geany.png)
36
+
37
+ [jruby]:{{ site.github.url }}/install_jruby/
38
+ [geany]:{{ site.github.url }}/editors/geany
@@ -1,17 +1,28 @@
1
1
  ---
2
- layout: page
2
+ layout: default
3
3
  title: About
4
4
  permalink: /about/
5
5
  ---
6
+ ![picrate.png]({{ site.github.url }}/assets/android-chrome-192x192.png)
7
+ PiCrate is both a `library` and an `app` that allows you to create [processing][processing] sketches in ruby on the [RaspberryPI][PI] (or 64 bit linux). PiCrate is available as a gem (from [rubygems][rubygems]), it requires [JRuby][jruby] to both install and run. It does not depend on a vanilla processing install ( _cf_ JRubyArt).
6
8
 
7
- PiCrate is an experimental ruby wrapper for processing for the raspberrypi (raspbian image), like the vanilla processing version this uses the 32 bit video drivers. It could be that 64 bit drivers work, but is possible they don't play too well together (to use the 64 bit drivers uncomment them in Rakefile and gemspec and comment out the 32 bit drivers). Also `native_folder.rb` will need amending for sound etc libraries see also [pi.processing.org libraries][libraries].
8
- See [github repo][repo]
9
+ #### Executable ####
9
10
 
10
- See also [gottfreid haider][gottfreid] at vanilla processing and vanilla [processing wiki][wiki]
11
+ The executable is `picrate`, which can be used to install samples (and configure [GeanyIDE][geany]) and some processing libraries
11
12
 
12
- [jruby_art]: https://ruby-processing.github.io/index.html
13
- [propane]:https://ruby-processing.github.io/propane/
14
- [repo]:https://github.com/ruby-processing/PiCrate
15
- [gottfreid]:https://github.com/processing/processing/wiki/Raspberry-Pi#download
16
- [wiki]:https://github.com/processing/processing/wiki/Raspberry-Pi
17
- [libraries]:https://pi.processing.org/libraries.html
13
+ #### Library ###
14
+
15
+ Your PiCrate sketches need to `require` the `picrate` library, and can be run with `jruby`.
16
+
17
+ * Command line interface (typically using vim as editor)
18
+
19
+ * Gui interface, sketches can be run from [GeanyIDE][geany]
20
+
21
+
22
+
23
+
24
+ [rubygems]:https://rubygems.org/
25
+ [jruby]:https://www.jruby.org/
26
+ [PI]:https://www.raspberrypi.org/
27
+ [processing]:https://www.processing.org/
28
+ [geany]:https://www.geany.org/
Binary file
Binary file
@@ -0,0 +1,251 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:ooo="http://xml.openoffice.org/svg/export"
4
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
5
+ xmlns:cc="http://creativecommons.org/ns#"
6
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
+ xmlns:svg="http://www.w3.org/2000/svg"
8
+ xmlns="http://www.w3.org/2000/svg"
9
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
10
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
+ version="1.2"
12
+ width="249.03999mm"
13
+ height="271.23001mm"
14
+ viewBox="0 0 24904 27123.002"
15
+ preserveAspectRatio="xMidYMid"
16
+ xml:space="preserve"
17
+ id="svg228"
18
+ sodipodi:docname="picrate2.svg"
19
+ inkscape:version="0.92.3 (unknown)"
20
+ style="fill-rule:evenodd;stroke-width:28.22200012;stroke-linejoin:round"><metadata
21
+ id="metadata232"><rdf:RDF><cc:Work
22
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
23
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><sodipodi:namedview
24
+ pagecolor="#ffffff"
25
+ bordercolor="#666666"
26
+ borderopacity="1"
27
+ objecttolerance="10"
28
+ gridtolerance="10"
29
+ guidetolerance="10"
30
+ inkscape:pageopacity="0"
31
+ inkscape:pageshadow="2"
32
+ inkscape:window-width="1920"
33
+ inkscape:window-height="1052"
34
+ id="namedview230"
35
+ showgrid="false"
36
+ inkscape:zoom="0.55473447"
37
+ inkscape:cx="395.54646"
38
+ inkscape:cy="390.95434"
39
+ inkscape:window-x="0"
40
+ inkscape:window-y="0"
41
+ inkscape:window-maximized="1"
42
+ inkscape:current-layer="svg228" />
43
+ <defs
44
+ class="ClipPathGroup"
45
+ id="defs155">
46
+ <clipPath
47
+ id="presentation_clip_path"
48
+ clipPathUnits="userSpaceOnUse">
49
+ <rect
50
+ x="0"
51
+ y="0"
52
+ width="34131"
53
+ height="39158"
54
+ id="rect149" />
55
+ </clipPath>
56
+ <clipPath
57
+ id="presentation_clip_path_shrink"
58
+ clipPathUnits="userSpaceOnUse">
59
+ <rect
60
+ x="11"
61
+ y="13"
62
+ width="113021"
63
+ height="13023"
64
+ id="rect152" />
65
+ </clipPath>
66
+ </defs>
67
+ <defs
68
+ class="TextShapeIndex"
69
+ id="defs159">
70
+ <g
71
+ ooo:slide="id1"
72
+ ooo:id-list="id3 id4"
73
+ id="g157" />
74
+ </defs>
75
+ <defs
76
+ class="EmbeddedBulletChars"
77
+ id="defs191">
78
+ <g
79
+ id="bullet-char-template-57356"
80
+ transform="matrix(4.8828125e-4,0,0,-4.8828125e-4,0,0)">
81
+ <path
82
+ d="M 580,1141 1163,571 580,0 -4,571 Z"
83
+ id="path161"
84
+ inkscape:connector-curvature="0" />
85
+ </g>
86
+ <g
87
+ id="bullet-char-template-57354"
88
+ transform="matrix(4.8828125e-4,0,0,-4.8828125e-4,0,0)">
89
+ <path
90
+ d="M 8,1128 H 1137 V 0 H 8 Z"
91
+ id="path164"
92
+ inkscape:connector-curvature="0" />
93
+ </g>
94
+ <g
95
+ id="bullet-char-template-10146"
96
+ transform="matrix(4.8828125e-4,0,0,-4.8828125e-4,0,0)">
97
+ <path
98
+ d="M 174,0 602,739 174,1481 1456,739 Z M 1358,739 309,1346 659,739 Z"
99
+ id="path167"
100
+ inkscape:connector-curvature="0" />
101
+ </g>
102
+ <g
103
+ id="bullet-char-template-10132"
104
+ transform="matrix(4.8828125e-4,0,0,-4.8828125e-4,0,0)">
105
+ <path
106
+ d="M 2015,739 1276,0 H 717 l 543,543 H 174 v 393 h 1086 l -543,545 h 557 z"
107
+ id="path170"
108
+ inkscape:connector-curvature="0" />
109
+ </g>
110
+ <g
111
+ id="bullet-char-template-10007"
112
+ transform="matrix(4.8828125e-4,0,0,-4.8828125e-4,0,0)">
113
+ <path
114
+ d="m 0,-2 c -7,16 -16,29 -25,39 l 381,530 c -94,256 -141,385 -141,387 0,25 13,38 40,38 9,0 21,-2 34,-5 21,4 42,12 65,25 l 27,-13 111,-251 280,301 64,-25 24,25 c 21,-10 41,-24 62,-43 C 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 c 0,-27 -21,-55 -63,-84 l 16,-20 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 c -22,-34 -53,-51 -92,-51 -42,0 -63,17 -64,51 -7,9 -10,24 -10,44 0,9 1,19 2,30 z"
115
+ id="path173"
116
+ inkscape:connector-curvature="0" />
117
+ </g>
118
+ <g
119
+ id="bullet-char-template-10004"
120
+ transform="matrix(4.8828125e-4,0,0,-4.8828125e-4,0,0)">
121
+ <path
122
+ d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 c 0,78 14,145 41,201 34,71 87,106 158,106 53,0 88,-31 106,-94 l 23,-176 c 8,-64 28,-97 59,-98 l 735,706 c 11,11 33,17 66,17 42,0 63,-15 63,-46 V 965 c 0,-36 -10,-64 -30,-84 L 442,47 C 390,-6 338,-33 285,-33 Z"
123
+ id="path176"
124
+ inkscape:connector-curvature="0" />
125
+ </g>
126
+ <g
127
+ id="bullet-char-template-9679"
128
+ transform="matrix(4.8828125e-4,0,0,-4.8828125e-4,0,0)">
129
+ <path
130
+ d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 c 0,181 53,324 160,431 106,107 249,161 430,161 179,0 323,-54 432,-161 108,-107 162,-251 162,-431 0,-180 -54,-324 -162,-431 C 1136,54 992,0 813,0 Z"
131
+ id="path179"
132
+ inkscape:connector-curvature="0" />
133
+ </g>
134
+ <g
135
+ id="bullet-char-template-8226"
136
+ transform="matrix(4.8828125e-4,0,0,-4.8828125e-4,0,0)">
137
+ <path
138
+ d="m 346,457 c -73,0 -137,26 -191,78 -54,51 -81,114 -81,188 0,73 27,136 81,188 54,52 118,78 191,78 73,0 134,-26 185,-79 51,-51 77,-114 77,-187 0,-75 -25,-137 -76,-188 -50,-52 -112,-78 -186,-78 z"
139
+ id="path182"
140
+ inkscape:connector-curvature="0" />
141
+ </g>
142
+ <g
143
+ id="bullet-char-template-8211"
144
+ transform="matrix(4.8828125e-4,0,0,-4.8828125e-4,0,0)">
145
+ <path
146
+ d="M -4,459 H 1135 V 606 H -4 Z"
147
+ id="path185"
148
+ inkscape:connector-curvature="0" />
149
+ </g>
150
+ <g
151
+ id="bullet-char-template-61548"
152
+ transform="matrix(4.8828125e-4,0,0,-4.8828125e-4,0,0)">
153
+ <path
154
+ d="m 173,740 c 0,163 58,303 173,419 116,115 255,173 419,173 163,0 302,-58 418,-173 116,-116 174,-256 174,-419 0,-163 -58,-303 -174,-418 C 1067,206 928,148 765,148 601,148 462,206 346,322 231,437 173,577 173,740 Z"
155
+ id="path188"
156
+ inkscape:connector-curvature="0" />
157
+ </g>
158
+ </defs>
159
+ <defs
160
+ class="TextEmbeddedBitmaps"
161
+ id="defs193" />
162
+ <g
163
+ id="g198"
164
+ transform="translate(-6600,-2800)">
165
+ <g
166
+ id="id2"
167
+ class="Master_Slide">
168
+ <g
169
+ id="bg-id2"
170
+ class="Background" />
171
+ <g
172
+ id="bo-id2"
173
+ class="BackgroundObjects" />
174
+ </g>
175
+ </g>
176
+ <g
177
+ class="SlideGroup"
178
+ id="g226"
179
+ transform="translate(-6600,-2800)">
180
+ <g
181
+ id="g224">
182
+ <g
183
+ id="container-id1">
184
+ <g
185
+ id="id1"
186
+ class="Slide"
187
+ clip-path="url(#presentation_clip_path)">
188
+ <g
189
+ class="Page"
190
+ id="g220">
191
+ <g
192
+ class="com.sun.star.drawing.ClosedBezierShape"
193
+ id="g211">
194
+ <g
195
+ id="id3">
196
+ <rect
197
+ class="BoundingBox"
198
+ x="9799"
199
+ y="3199"
200
+ width="13903"
201
+ height="26103"
202
+ id="rect200"
203
+ style="fill:none;stroke:none" />
204
+ <path
205
+ d="m 16499,3200 c 3798,0 6700,2901 6700,6699 0,2790 -1566,5097 -3904,6124 2617,950 4405,3412 4405,6427 0,3884 -2966,6850 -6850,6850 -3884,0 -6850,-2966 -6850,-6850 0,-2876 1627,-5249 4049,-6286 -2527,-945 -4249,-3339 -4249,-6265 0,-3798 2901,-6699 6699,-6699 z m -1,3349 c -1899,0 -3349,1450 -3349,3349 0,1899 1450,3350 3349,3350 1899,0 3350,-1451 3350,-3350 0,-1899 -1451,-3349 -3350,-3349 z m 350,12475 c -1941,0 -3424,1483 -3424,3424 0,1941 1483,3425 3424,3425 1941,0 3425,-1484 3425,-3425 0,-1941 -1484,-3424 -3425,-3424 z"
206
+ id="path202"
207
+ inkscape:connector-curvature="0"
208
+ style="fill:#ed1c24;stroke:none" />
209
+ <path
210
+ d="m 16499,3200 c 3798,0 6700,2901 6700,6699 0,2790 -1566,5097 -3904,6124 2617,950 4405,3412 4405,6427 0,3884 -2966,6850 -6850,6850 -3884,0 -6850,-2966 -6850,-6850 0,-2876 1627,-5249 4049,-6286 -2527,-945 -4249,-3339 -4249,-6265 0,-3798 2901,-6699 6699,-6699 z"
211
+ id="path204"
212
+ inkscape:connector-curvature="0"
213
+ style="fill:none;stroke:#3465a4" />
214
+ <path
215
+ d="m 16498,6549 c -1899,0 -3349,1450 -3349,3349 0,1899 1450,3350 3349,3350 1899,0 3350,-1451 3350,-3350 0,-1899 -1451,-3349 -3350,-3349 z"
216
+ id="path206"
217
+ inkscape:connector-curvature="0"
218
+ style="fill:none;stroke:#3465a4" />
219
+ <path
220
+ d="m 16848,19024 c -1941,0 -3424,1483 -3424,3424 0,1941 1483,3425 3424,3425 1941,0 3425,-1484 3425,-3425 0,-1941 -1484,-3424 -3425,-3424 z"
221
+ id="path208"
222
+ inkscape:connector-curvature="0"
223
+ style="fill:none;stroke:#3465a4" />
224
+ </g>
225
+ </g>
226
+ <g
227
+ class="com.sun.star.drawing.PolyPolygonShape"
228
+ id="g218">
229
+ <g
230
+ id="id4">
231
+ <rect
232
+ class="BoundingBox"
233
+ x="6600"
234
+ y="2800"
235
+ width="24904"
236
+ height="27123"
237
+ id="rect213"
238
+ style="fill:none;stroke:none" />
239
+ <path
240
+ d="m 23480,6292 -200,-121 -268,-154 -248,-139 -91,-49 -55,-27 -32,-14 -33,-15 -57,-26 -10,-5 -13,-6 -14,-6 -15,-6 -30,-11 -15,-4 -14,-4 -15,-4 -17,-7 -39,-17 -43,-20 -42,-23 -93,-55 -202,307 -204,304 -212,-140 -89,-54 -40,-23 -37,-18 -32,-14 -15,-6 -13,-4 -10,-3 -9,-1 h -5 l -3,-1 h -4 l -2,1 -5,3 -6,3 -14,12 -16,17 -17,20 -39,50 -38,59 -37,59 -29,55 -11,24 -8,21 -4,17 -1,7 1,5 v 6 l -1,8 -1,8 -1,8 -2,7 -2,7 -4,7 -1,3 -2,2 -2,3 -2,3 -3,2 -2,1 -2,2 -2,1 h -2 -1 l -1,1 -1,-1 h -1 -1 -1 v -1 h -1 l -1,-1 v 0 l -1,-1 -1,-1 -1,-2 -1,-2 -1,-3 v -1 -2 l -1,-2 -1,-1 -3,-5 -4,-4 -5,-4 -5,-4 -14,-9 -15,-8 -19,-10 -19,-9 -21,-9 -12,-5 -15,-8 -39,-22 -48,-32 -54,-38 -125,-92 -132,-105 -139,-108 -136,-101 -118,-81 -48,-30 -37,-22 -1021,-551 -104,-53 -182,-90 -497,-237 -498,-232 -186,-84 -109,-45 -23,-9 -21,-9 -20,-10 -17,-9 -16,-9 -6,-5 -5,-4 -5,-4 -3,-4 -1,-1 -1,-2 -1,-2 -1,-1 v -2 -1 l -1,-1 -1,-1 -1,-2 -2,-1 -2,-2 -3,-3 -4,-2 -5,-2 -5,-2 -5,-2 -6,-1 -13,-3 -13,-1 -15,-1 -14,1 h -12 l -11,-2 -9,-1 -5,-2 h -2 l -3,-2 h -1 l -1,-1 -1,-1 h -1 v -1 0 -1 -1 -1 l 1,-1 v 0 0 0 -2 0 l -1,-1 v 0 l -1,-2 -1,-1 -4,-2 -5,-3 -6,-3 -15,-7 -19,-7 -21,-8 -52,-15 -53,-16 -45,-16 -18,-8 -16,-7 -6,-3 -5,-4 -5,-2 -1,-1 -1,-1 -3,-2 -4,-3 -12,-6 -13,-6 -17,-7 -37,-14 -21,-7 -22,-6 -22,-6 -21,-6 -20,-6 -17,-8 -16,-6 -13,-6 -5,-3 -5,-3 -4,-2 v -2 l -2,-1 -1,-1 -2,-1 -3,-2 -5,-3 -5,-3 -12,-6 -16,-5 -38,-14 -43,-13 -23,-6 -25,-7 -50,-17 -48,-18 -20,-9 -17,-8 -53,-20 -89,-32 -234,-77 -215,-68 -70,-23 -21,-7 -6,-3 h -2 l -1,-1 -4,-2 -5,-2 -16,-6 -71,-22 -465,-139 -139,-42 -122,-39 -88,-31 -29,-13 -10,-5 -6,-3 -4,-3 -5,-3 -4,-2 -5,-2 -4,-2 -5,-1 -4,-1 h -4 -4 -4 l -4,1 -3,1 -3,2 -4,2 -2,2 -3,3 -1,2 -3,2 -2,2 -3,2 -4,1 -3,2 h -3 -4 -4 l -3,1 -4,-1 -4,-1 -4,-1 -4,-2 -3,-2 -4,-2 -2,-2 -3,-1 -10,-3 -33,-11 -106,-28 -150,-37 -177,-40 -175,-40 -144,-38 -55,-16 -42,-14 -16,-5 -11,-6 -4,-2 -3,-2 -3,-2 v 0 -1 l -1,-3 -1,-1 v -1 l -1,-1 v 0 l -1,-2 h -1 -1 l -1,-1 h -1 -1 -1 -2 -1 l -3,1 -3,1 -2,2 -3,2 -2,2 -3,3 -3,3 -2,3 -3,4 -2,3 -3,3 -3,1 -3,3 -2,1 -2,1 -3,1 h -1 -1 -1 -1 -1 -1 l -1,-1 v 0 l -1,-1 -1,-1 -1,-1 v -1 -1 -1 l -1,-4 v -1 l -1,-1 -1,-2 -2,-1 -3,-3 -3,-2 -3,-3 -5,-2 -5,-2 -5,-1 -6,-1 -6,-2 -12,-1 h -14 l -15,1 -7,1 -8,1 -8,-1 -7,-1 h -7 l -7,-1 -7,-1 -6,-2 -6,-3 -6,-2 -4,-2 -5,-4 -4,-3 -4,-2 -2,-4 -2,-2 -1,-1 -1,-4 -2,-4 -2,-3 -1,-2 -3,-2 -2,-2 v 0 l -2,-1 h -1 l -1,-1 h -2 v -1 l -1,1 h -1 -2 -1 -1 -1 l -2,2 -2,2 -2,1 -2,2 -1,1 v 1 l -2,1 -2,1 h -3 l -7,2 h -8 l -22,-1 -28,-2 -68,-10 -82,-15 -84,-19 -78,-14 -63,-10 -23,-2 h -9 l -8,-1 -5,1 h -8 l -18,-1 -21,-2 -24,-4 -26,-5 -26,-6 -28,-7 -27,-8 -51,-11 -46,-10 -36,-5 -13,-1 -4,-1 h -4 l -5,2 -8,-1 h -24 l -72,-5 -205,-20 -202,-26 -69,-11 -20,-4 -6,-2 -3,-1 -1,-1 h -1 -2 l -2,-1 -5,-2 h -4 l -13,-2 h -15 -37 l -42,1 -22,2 -22,-1 -22,-1 -20,-2 -19,-3 -16,-5 -8,-2 -6,-3 -5,-2 -5,-3 -4,-3 -4,-2 -5,-2 -4,-2 -4,-1 h -5 l -4,-1 h -4 -4 l -5,1 -4,1 -3,1 -3,2 -4,2 -1,2 -3,3 -2,2 -2,2 -2,2 -3,2 -2,1 h -2 l -2,1 -3,-1 h -3 l -3,-1 -2,-1 -2,-2 -3,-2 -2,-2 -2,-3 -2,-4 -2,-3 -2,-2 -3,-3 -3,-2 -3,-2 -4,-2 h -3 l -5,-2 h -4 l -4,1 h -5 l -4,1 -5,1 -6,2 -4,2 -6,2 -5,3 -5,2 -10,4 -10,3 -6,1 h -5 l -5,1 h -6 -4 l -4,-1 -5,-1 -3,-1 -4,-1 -2,-1 -1,-1 -1,-1 -3,-1 -4,-3 -7,-2 -8,-1 -16,-3 -21,-2 -22,-1 h -25 -27 l -27,2 -52,3 h -24 l -22,-1 -19,-1 -16,-1 -6,-2 -5,-1 -5,-1 -1,-1 -2,-1 -1,-1 -2,-1 -5,-2 -8,-1 -8,-1 -20,-3 -25,-1 -61,-1 -68,1 -69,3 h -58 l -23,-2 -17,-2 -6,-1 -5,-1 -2,-1 -2,-1 v 0 l -1,-1 v 0 -1 -1 l -2,-1 h -1 l -1,-1 -2,-1 -2,-1 -5,-1 h -4 l -7,-1 h -15 l -17,2 -19,3 -22,3 -22,5 -22,5 -22,4 -20,3 -19,1 h -16 -6 l -7,-1 -5,-2 h -2 l -2,-1 -2,-1 -1,-1 -1,-1 -1,-2 h -1 l -1,-1 h -1 l -3,-1 -3,-1 -8,-1 -9,-2 h -26 -32 l -80,4 -93,8 -95,7 -43,1 -37,-1 -32,-3 -13,-2 -12,-2 -9,-3 -4,-2 -3,-1 -3,-1 -2,-2 -2,-2 -1,-1 v -2 l -2,-3 -2,-3 -3,-2 -1,-2 -3,-2 h -1 l -2,-1 v 0 l -2,-1 h -1 l -1,1 -3,-1 -2,1 h -3 l -3,1 -2,2 -3,2 -2,2 -3,3 v 2 h -1 l -3,2 -8,4 -13,4 -16,4 -44,10 -55,11 -141,22 -169,20 -165,20 -133,20 -89,17 -14,3 -11,3 -3,1 -3,2 h -1 v 1 h -1 v 0 0 1 0 l 1,2 1,2 2,1 5,4 6,3 17,8 23,9 27,10 31,10 71,20 68,18 30,9 25,9 20,8 8,3 7,4 5,3 2,2 1,1 1,1 v 1 0 l 1,1 -1,1 v 0 1 h -1 v 1 1 1 0 1 l 1,1 h 1 l 1,1 v 0 l 3,1 3,1 3,2 h 4 l 4,1 9,1 h 11 l 12,-1 14,1 15,2 17,4 17,3 17,5 17,6 15,6 15,7 13,8 15,6 16,6 16,7 16,5 15,4 14,3 12,2 6,1 4,1 6,1 5,2 5,2 6,2 5,3 5,3 4,3 5,3 4,3 5,4 2,4 3,4 3,4 2,3 2,4 3,4 2,2 3,3 2,2 3,2 2,1 h 3 l 1,1 h 1 2 1 2 1 l 2,-1 2,-1 2,-2 2,-2 2,-2 2,-3 3,-2 3,-3 2,-2 2,-1 3,-2 2,-1 4,-1 h 2 3 3 l 3,1 2,1 2,1 3,2 3,2 1,1 3,2 5,4 22,10 72,31 102,39 122,45 238,89 89,35 30,13 19,9 14,8 16,7 17,7 16,6 16,5 16,4 15,3 6,1 h 6 l 11,3 11,3 10,4 4,2 5,3 3,2 5,3 3,2 3,3 2,3 3,3 1,2 1,2 v 1 l 1,2 v 1 2 l 1,1 2,3 2,2 3,3 3,2 3,2 4,2 4,2 4,2 5,2 5,1 4,1 h 5 5 5 l 9,2 11,2 38,12 115,40 334,127 360,145 145,63 100,47 15,8 15,5 23,9 16,5 22,10 60,25 67,31 61,29 26,13 23,9 8,5 7,2 h 2 l 2,1 h 1 1 v 0 0 0 0 l 1,-1 h 1 v 0 0 h 1 1 2 l 5,2 18,6 32,14 359,160 461,219 232,124 46,24 61,31 141,65 215,111 306,170 796,468 895,549 819,525 672,437 458,298 498,342 431,310 157,121 102,84 281,269 92,96 66,77 24,34 19,31 15,29 10,27 7,27 4,27 1,28 v 29 l -2,32 -5,30 -8,30 -12,28 -14,28 -18,28 -22,28 -26,30 -24,27 -19,25 -16,23 -11,21 -4,10 -3,9 -2,9 -1,9 v 7 l 1,7 1,7 3,7 1,2 1,4 2,7 1,8 1,10 v 23 l -1,26 -2,30 -5,31 -5,32 -7,31 -8,28 -11,29 -15,32 -19,38 -57,94 -88,131 -809,1111 -992,1337 -3,4 -4,6 -12,17 -31,51 -82,145 -189,340 -37,67 -44,84 -98,206 -100,226 -89,212 -56,135 -28,66 -25,52 -177,407 -117,260 -56,117 -45,87 -343,644 -113,188 -224,338 -899,1279 -4357,6056 -2846,4007 -316,483 -205,345 -66,130 -48,108 -32,91 -17,77 -1,22 2,25 4,27 8,31 22,68 32,73 39,76 44,76 50,73 52,66 43,46 53,52 129,116 154,127 164,127 164,121 153,104 130,80 52,27 43,18 23,7 27,3 29,2 31,-1 66,-5 68,-13 62,-17 29,-10 26,-11 22,-13 18,-12 7,-7 7,-6 5,-7 3,-7 2,-4 2,-4 2,-3 2,-3 3,-3 3,-2 3,-2 4,-2 3,-1 4,-1 4,1 h 3 l 4,1 4,1 3,1 3,3 h 1 l 1,1 h 2 l 1,-1 3,-1 5,-3 7,-6 17,-17 23,-26 64,-81 90,-121 651,-933 3305,-4613 1333,-1759 611,-858 581,-859 1383,-2012 606,-840 398,-520 230,-254 284,-294 285,-281 240,-217 153,-136 66,-59 25,-25 20,-20 18,-17 19,-16 20,-16 21,-15 20,-15 20,-12 17,-10 8,-4 8,-3 12,-6 12,-6 9,-6 9,-6 3,-2 3,-3 2,-2 2,-3 1,-1 v 0 l 1,-1 -1,-1 v -1 l -1,-1 v -1 0 0 l -1,-1 v 0 0 -2 l 1,-1 3,-4 3,-5 12,-12 16,-16 43,-38 57,-45 65,-52 71,-63 67,-64 30,-30 24,-28 200,-209 41,-42 51,-55 102,-115 2112,-2767 234,-316 78,-101 57,-69 22,-25 19,-17 15,-13 8,-4 6,-4 6,-2 6,-1 h 5 l 5,1 5,2 4,2 5,2 5,4 18,16 9,7 7,5 7,5 6,3 3,1 2,2 h 1 v 0 l 1,1 1,-1 h 1 l 1,-1 3,-4 13,-13 43,-46 131,-141 137,-149 77,-86 4,-3 3,-3 3,-3 4,-2 5,-1 5,-1 6,1 7,1 16,4 19,7 25,11 29,16 74,43 101,64 297,196 632,440 808,584 762,565 494,381 287,239 73,58 125,104 342,290 352,305 231,207 285,266 54,48 69,64 150,146 259,247 39,36 43,43 80,78 163,155 185,178 245,243 220,224 73,78 24,25 11,15 9,11 13,15 31,35 39,38 41,37 20,19 19,18 18,18 16,19 14,16 11,16 5,7 4,7 3,6 2,5 2,4 2,5 4,6 5,6 10,13 12,15 15,15 17,16 18,15 18,15 21,19 29,28 74,79 187,210 177,207 61,78 19,26 11,17 4,10 6,9 6,10 7,10 16,20 16,18 20,20 23,26 54,64 119,155 53,76 44,66 17,27 11,21 4,9 2,6 2,5 v 1 0 l -1,1 -1,3 -1,2 -1,3 -1,2 v 1 2 1 l 1,1 v 1 l 1,1 1,1 v 2 h 1 l 1,1 v 1 l 2,1 2,2 3,1 2,1 4,1 h 4 4 4 l 4,2 3,1 4,2 3,2 3,3 3,2 3,4 3,3 2,4 2,4 2,4 1,4 1,4 1,5 v 4 5 l 1,4 1,5 1,4 2,5 1,3 3,4 2,3 3,3 3,3 3,3 3,1 4,3 4,1 3,1 h 4 l 4,1 h 4 l 3,2 3,1 2,1 v 0 l 2,1 1,1 1,1 1,1 v 1 l 1,2 1,1 v 1 1 2 2 3 l -1,3 -1,3 -1,3 -3,3 -2,3 -1,3 -1,3 -1,3 v 3 3 2 l 1,2 1,1 v 1 l 1,2 h 1 v 2 l 2,1 h 1 l 1,1 1,1 3,1 3,1 4,1 h 4 4 l 4,2 3,1 4,2 4,2 2,2 3,3 3,3 3,3 2,4 2,3 2,5 1,4 1,5 1,4 -1,5 1,4 1,4 1,5 2,5 2,5 3,6 7,11 9,12 10,11 12,11 6,5 6,5 11,9 4,4 5,4 4,5 4,5 4,4 3,5 2,4 2,5 2,5 v 4 3 2 l -1,3 v 1 2 l -1,2 -1,1 -2,3 -1,3 -1,3 -1,2 -1,3 v 3 l -1,2 2,3 v 3 l 1,2 1,2 2,3 2,2 1,2 3,2 3,1 5,5 7,5 16,16 19,20 19,22 17,26 21,30 40,58 30,40 25,31 93,106 16,19 14,18 12,18 9,17 4,8 3,8 3,7 1,7 1,6 -1,6 1,2 -1,2 -1,2 -1,1 -3,4 -2,4 -1,3 -1,3 v 1 l -1,1 1,2 v 1 1 l 1,1 h 1 l 1,1 1,1 h 1 l 1,1 2,1 h 4 4 5 l 6,1 13,-2 9,-1 7,-3 7,-3 6,-5 6,-6 5,-8 4,-9 5,-10 3,-12 4,-14 5,-32 5,-40 3,-48 v -46 l -3,-58 -14,-140 -52,-342 -71,-349 -39,-151 -38,-120 -54,-155 -21,-64 -8,-24 -4,-18 -6,-21 -11,-34 -36,-98 -105,-266 -106,-269 -39,-99 -21,-58 -5,-16 -6,-15 -7,-16 -7,-14 -7,-13 -7,-11 -4,-5 -3,-4 -3,-3 -3,-3 -4,-2 -2,-3 -3,-3 -2,-3 -2,-3 -2,-3 v -4 l -1,-4 v -3 -4 l 1,-4 v -3 l 2,-4 2,-4 1,-3 3,-4 2,-3 2,-3 1,-3 1,-2 v -2 -3 l 1,-2 -1,-1 v -1 l -1,-1 v -1 h -1 v -1 -1 h -1 l -1,-1 -1,-1 h -1 -1 l -2,-1 h -3 -3 -1 -2 l -1,-1 -3,-1 -4,-2 -4,-5 -10,-10 -10,-14 -11,-17 -11,-20 -22,-46 -21,-49 -18,-49 -12,-46 -4,-19 -2,-17 -1,-9 -1,-3 -1,-4 -2,-3 v -2 l -1,-1 -1,-1 v -1 h -1 l -1,-1 -1,-1 h -1 v 0 h -1 l -1,1 h -2 v 0 l -2,2 -2,1 -3,2 -2,3 -2,4 -2,2 -3,2 -2,2 h -1 l -1,1 h -1 -1 -1 -1 v -1 h -1 -1 l -1,-1 -1,-1 v -1 l -1,-3 -1,-3 -1,-3 -1,-5 -1,-10 v -5 l -1,-6 -2,-7 -3,-9 -7,-19 -9,-22 -11,-23 -13,-25 -13,-24 -16,-25 -60,-113 -44,-91 -16,-37 -12,-32 -7,-27 -2,-12 -2,-11 v -4 -4 l -2,-4 v -4 l -2,-2 -1,-3 v -1 l -1,-1 -1,-1 v -1 h -1 l -1,-1 h -1 -1 v -1 l -1,1 h -1 -2 v 1 h -1 -1 l -1,1 -2,1 -2,3 -1,1 -1,1 -1,2 h -1 -1 v 0 l -1,1 h -2 l -1,-1 h -1 l -2,-1 h -1 l -1,-1 -1,-1 -3,-3 -2,-2 -2,-4 -3,-4 -2,-4 -5,-11 -5,-12 -11,-27 -24,-48 -77,-141 -224,-391 -224,-376 -77,-124 -24,-36 -8,-10 -2,-3 -2,-1 -3,-1 -3,-2 -2,-2 -2,-2 -2,-3 v -2 l -1,-2 v -3 l -1,-4 v -2 -3 l 1,-3 2,-3 1,-3 1,-3 2,-3 2,-3 1,-2 1,-3 1,-3 -1,-2 v -2 -1 -1 h -1 l -1,-2 v -1 l -2,-2 -1,-2 -3,-2 -3,-2 -3,-1 -3,-2 -4,-1 -5,-1 -3,-1 -4,-1 h -4 l -3,-2 -3,-2 -2,-1 -2,-2 -2,-2 -2,-2 v -1 l -1,-1 -1,-1 v -1 -2 -1 -1 l -1,-1 1,-1 v -1 l 2,-3 1,-3 2,-2 1,-3 1,-3 v -3 l -1,-4 v -3 l -1,-4 -1,-3 -1,-4 -3,-4 -2,-3 -1,-3 -3,-3 -3,-3 -3,-3 -4,-3 -5,-3 -4,-5 -14,-16 -17,-20 -19,-24 -42,-60 -46,-69 -78,-119 -26,-38 -7,-11 -2,-3 -1,-1 v 0 0 l -1,-1 h -1 l -2,-4 -8,-11 -25,-35 -76,-113 -65,-97 -100,-143 -251,-348 -344,-478 -28,-40 -13,-17 -5,-8 -5,-5 -14,-20 -3,-5 -1,-2 -1,-1 -1,-2 v -2 -1 -1 -1 l -2,-3 -4,-5 -11,-12 -28,-33 -396,-470 -361,-433 -44,-54 -13,-16 -7,-10 -16,-18 -49,-57 -148,-166 -160,-174 -105,-112 -167,-180 -68,-75 -24,-28 -16,-18 -10,-11 -6,-5 -5,-4 -6,-5 -5,-4 -3,-2 -3,-2 -2,-1 -3,-1 -3,-2 -4,-4 -12,-11 -38,-35 -107,-103 -437,-424 -210,-196 -153,-136 -528,-445 -282,-240 -92,-80 -28,-26 -8,-9 -5,-5 -2,-2 -1,-3 -1,-3 -1,-3 -1,-7 -1,-8 1,-8 1,-9 3,-9 3,-10 8,-22 12,-23 14,-25 17,-25 17,-24 16,-26 14,-24 12,-23 10,-22 8,-19 5,-16 1,-7 1,-6 -1,-2 v -3 l -3,-7 -4,-8 -6,-9 -16,-21 -21,-24 -26,-27 -29,-27 -33,-29 -35,-30 -175,-138 144,-220 64,-92 30,-38 28,-34 26,-27 22,-21 10,-8 9,-6 8,-5 4,-1 3,-1 6,-2 7,-2 5,-3 6,-3 10,-8 10,-10 7,-10 6,-13 5,-13 4,-14 1,-13 1,-15 -1,-14 -3,-14 -4,-15 -7,-13 -7,-12 -10,-11 -37,-37 -72,-73 -208,-214 -107,-104 -140,-130 -329,-295 -302,-256 -105,-84 -35,-25 -13,-8 -9,-5 -3,-1 -4,-2 -12,-6 -36,-21 -48,-31 z"
241
+ id="path215"
242
+ inkscape:connector-curvature="0"
243
+ style="fill:#000000;stroke:none" />
244
+ </g>
245
+ </g>
246
+ </g>
247
+ </g>
248
+ </g>
249
+ </g>
250
+ </g>
251
+ </svg>