geomerative 0.4.0-java → 0.4.2-java

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 (44) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +1 -5
  3. data/CHANGELOG.md +7 -0
  4. data/README.md +3 -1
  5. data/calculate_torsional_angle.rb +17 -0
  6. data/docs/.gitignore +6 -0
  7. data/docs/_config.yml +22 -0
  8. data/docs/_includes/footer.html +38 -0
  9. data/docs/_includes/head.html +15 -0
  10. data/docs/_includes/header.html +27 -0
  11. data/docs/_includes/icon-github.html +1 -0
  12. data/docs/_includes/icon-github.svg +1 -0
  13. data/docs/_includes/icon-twitter.html +1 -0
  14. data/docs/_includes/icon-twitter.svg +1 -0
  15. data/docs/_layouts/default.html +20 -0
  16. data/docs/_layouts/page.html +14 -0
  17. data/docs/_layouts/post.html +15 -0
  18. data/docs/_posts/2015-11-21-getting_started.md +66 -0
  19. data/docs/_posts/2015-11-25-bubbles.md +111 -0
  20. data/docs/_posts/2015-11-26-extra_bright.md +103 -0
  21. data/docs/_posts/2015-11-26-text_merge.md +114 -0
  22. data/docs/_posts/2016-07-06-dymo.md +99 -0
  23. data/docs/_sass/_base.scss +206 -0
  24. data/docs/_sass/_layout.scss +242 -0
  25. data/docs/_sass/_syntax-highlighting.scss +71 -0
  26. data/docs/about.md +12 -0
  27. data/docs/assets/bright.png +0 -0
  28. data/docs/assets/bubbles.png +0 -0
  29. data/docs/assets/design.png +0 -0
  30. data/docs/assets/dymo.png +0 -0
  31. data/docs/assets/favicon.ico +0 -0
  32. data/docs/assets/fred.png +0 -0
  33. data/docs/assets/merge.png +0 -0
  34. data/docs/css/main.scss +38 -0
  35. data/docs/favicon.ico +0 -0
  36. data/docs/feed.xml +30 -0
  37. data/docs/index.html +38 -0
  38. data/examples/hello_svg_to_pdf.rb +1 -1
  39. data/geomerative.gemspec +2 -2
  40. data/lib/geomerative/version.rb +1 -1
  41. data/pom.rb +2 -2
  42. data/pom.xml +2 -2
  43. data/src/geomerative/RCommand.java +13 -13
  44. metadata +39 -6
@@ -0,0 +1,71 @@
1
+ /**
2
+ * Syntax highlighting styles
3
+ */
4
+ .highlight {
5
+ background: #fff;
6
+ @extend %vertical-rhythm;
7
+
8
+ .highlighter-rouge & {
9
+ background: #eef;
10
+ }
11
+
12
+ .c { color: #998; font-style: italic } // Comment
13
+ .err { color: #a61717; background-color: #e3d2d2 } // Error
14
+ .k { font-weight: bold } // Keyword
15
+ .o { font-weight: bold } // Operator
16
+ .cm { color: #998; font-style: italic } // Comment.Multiline
17
+ .cp { color: #999; font-weight: bold } // Comment.Preproc
18
+ .c1 { color: #998; font-style: italic } // Comment.Single
19
+ .cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
20
+ .gd { color: #000; background-color: #fdd } // Generic.Deleted
21
+ .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
22
+ .ge { font-style: italic } // Generic.Emph
23
+ .gr { color: #a00 } // Generic.Error
24
+ .gh { color: #999 } // Generic.Heading
25
+ .gi { color: #000; background-color: #dfd } // Generic.Inserted
26
+ .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
27
+ .go { color: #888 } // Generic.Output
28
+ .gp { color: #555 } // Generic.Prompt
29
+ .gs { font-weight: bold } // Generic.Strong
30
+ .gu { color: #aaa } // Generic.Subheading
31
+ .gt { color: #a00 } // Generic.Traceback
32
+ .kc { font-weight: bold } // Keyword.Constant
33
+ .kd { font-weight: bold } // Keyword.Declaration
34
+ .kp { font-weight: bold } // Keyword.Pseudo
35
+ .kr { font-weight: bold } // Keyword.Reserved
36
+ .kt { color: #458; font-weight: bold } // Keyword.Type
37
+ .m { color: #099 } // Literal.Number
38
+ .s { color: #d14 } // Literal.String
39
+ .na { color: #008080 } // Name.Attribute
40
+ .nb { color: #0086B3 } // Name.Builtin
41
+ .nc { color: #458; font-weight: bold } // Name.Class
42
+ .no { color: #008080 } // Name.Constant
43
+ .ni { color: #800080 } // Name.Entity
44
+ .ne { color: #900; font-weight: bold } // Name.Exception
45
+ .nf { color: #900; font-weight: bold } // Name.Function
46
+ .nn { color: #555 } // Name.Namespace
47
+ .nt { color: #000080 } // Name.Tag
48
+ .nv { color: #008080 } // Name.Variable
49
+ .ow { font-weight: bold } // Operator.Word
50
+ .w { color: #bbb } // Text.Whitespace
51
+ .mf { color: #099 } // Literal.Number.Float
52
+ .mh { color: #099 } // Literal.Number.Hex
53
+ .mi { color: #099 } // Literal.Number.Integer
54
+ .mo { color: #099 } // Literal.Number.Oct
55
+ .sb { color: #d14 } // Literal.String.Backtick
56
+ .sc { color: #d14 } // Literal.String.Char
57
+ .sd { color: #d14 } // Literal.String.Doc
58
+ .s2 { color: #d14 } // Literal.String.Double
59
+ .se { color: #d14 } // Literal.String.Escape
60
+ .sh { color: #d14 } // Literal.String.Heredoc
61
+ .si { color: #d14 } // Literal.String.Interpol
62
+ .sx { color: #d14 } // Literal.String.Other
63
+ .sr { color: #009926 } // Literal.String.Regex
64
+ .s1 { color: #d14 } // Literal.String.Single
65
+ .ss { color: #990073 } // Literal.String.Symbol
66
+ .bp { color: #999 } // Name.Builtin.Pseudo
67
+ .vc { color: #008080 } // Name.Variable.Class
68
+ .vg { color: #008080 } // Name.Variable.Global
69
+ .vi { color: #008080 } // Name.Variable.Instance
70
+ .il { color: #099 } // Literal.Number.Integer.Long
71
+ }
@@ -0,0 +1,12 @@
1
+ ---
2
+ layout: page
3
+ title: About
4
+ permalink: /about/
5
+ ---
6
+
7
+ Geomerative is a library for Processing by [Ricard Marxer][ricard]. It extends 2D geometry operations to facilitate generative geometry. Includes a TrueType font and an SVG interpreters. This library exposes the shapes (such as vector drawings or typographies) in a more approchable way. Geomerative makes it easy to access the paths, the handles and the points, making it easy to develop generative typography and geometry pieces in Processing. [Geomerarative gem][gem] is a ruby wrapper for the java processing library geomerative library Ricard Marxer. If you create processing sketches using [JRubyArt][jruby_art] or [propane][propane], all you need to do is `require 'geomerative'` to use the geomerative library.
8
+
9
+ [jruby_art]: https://ruby-processing.github.io/index.html
10
+ [gem]:http://www.ricardmarxer.com/geomerative/
11
+ [ricard]:http://www.ricardmarxer.com/
12
+ [propane]:https://ruby-processing.github.io/propane/
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,38 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+ @charset "utf-8";
5
+
6
+ // Our variables
7
+ $base-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
8
+ $base-font-size: 16px;
9
+ $base-font-weight: 400;
10
+ $small-font-size: $base-font-size * 0.875;
11
+ $base-line-height: 1.5;
12
+
13
+ $spacing-unit: 30px;
14
+
15
+ $text-color: #111;
16
+ $background-color: #fdfdfd;
17
+ $brand-color: #2a7ae2;
18
+
19
+ $grey-color: #828282;
20
+ $grey-color-light: lighten($grey-color, 40%);
21
+ $grey-color-dark: darken($grey-color, 25%);
22
+
23
+ // Width of the content area
24
+ $content-width: 800px;
25
+
26
+ $on-palm: 600px;
27
+ $on-laptop: 800px;
28
+
29
+ // Minima also includes a mixin for defining media queries.
30
+ // Use media queries like this:
31
+ // @include media-query($on-palm) {
32
+ // .wrapper {
33
+ // padding-right: $spacing-unit / 2;
34
+ // padding-left: $spacing-unit / 2;
35
+ // }
36
+ // }
37
+
38
+ // Import partials from the `minima` theme.
Binary file
@@ -0,0 +1,30 @@
1
+ ---
2
+ layout: null
3
+ ---
4
+ <?xml version="1.0" encoding="UTF-8"?>
5
+ <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
6
+ <channel>
7
+ <title>{{ site.title | xml_escape }}</title>
8
+ <description>{{ site.description | xml_escape }}</description>
9
+ <link>{{ site.github.url }}{{ site.baseurl }}/</link>
10
+ <atom:link href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.github.url }}" rel="self" type="application/rss+xml"/>
11
+ <pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
12
+ <lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
13
+ <generator>Jekyll v{{ jekyll.version }}</generator>
14
+ {% for post in site.posts limit:10 %}
15
+ <item>
16
+ <title>{{ post.title | xml_escape }}</title>
17
+ <description>{{ post.content | xml_escape }}</description>
18
+ <pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
19
+ <link>{{ post.url | prepend: site.baseurl | prepend: site.github.url }}</link>
20
+ <guid isPermaLink="true">{{ post.url | prepend: site.baseurl | prepend: site.github.url }}</guid>
21
+ {% for tag in post.tags %}
22
+ <category>{{ tag | xml_escape }}</category>
23
+ {% endfor %}
24
+ {% for cat in post.categories %}
25
+ <category>{{ cat | xml_escape }}</category>
26
+ {% endfor %}
27
+ </item>
28
+ {% endfor %}
29
+ </channel>
30
+ </rss>
@@ -0,0 +1,38 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <section role="banner">
5
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
6
+ width="256px" height="256px" viewBox="10 10 200 200" style="enable-background:new 0 0 200 200;" xml:space="preserve" fill="#380E99">
7
+ <g>
8
+ <path d="M56.161,183.028l4.452-43.162l7.904,6.584L56,185.335L56.161,183.028z M70.823,152.055l19.61,39.046l-32.951,4.116
9
+ L70.823,152.055z M92.739,195.552v0.161V195.552l0.657-0.161v0.161l93.095,3.62l-126.703,0.496L92.739,195.552z M127.997,90.604
10
+ l-30.645,34.098l-27.186,17.137l-7.743-6.584l10.874-20.435l25.872-28.842l24.711-17.297l11.371,3.138L127.997,90.604z
11
+ M90.266,182.036l-18.122-36.082l25.375-16.144L90.266,182.036z M154.693,141.181l-61.129,48.271l8.24-59.306L154.693,141.181z
12
+ M158.152,144.479l38.06,51.569l-98.532-3.795L158.152,144.479z M130.638,94.546l22.734,43.015l-51.241-11.371L130.638,94.546z
13
+ M171.004,56.332l-34.111,11.035l-6.094-1.649L171.004,56.332z M132.945,90.604l7.576-19.281l42.183,6.758L132.945,90.604z
14
+ M134.922,94.546l53.875-14.494l-30.973,57.83L134.922,94.546z M194.234,76.257l-45.146-7.897l36.082-11.706L194.234,76.257z
15
+ M200,195.391l-39.213-53.218l33.943-63.609L200,195.391z"/>
16
+ </g>
17
+ </svg>
18
+ </section>
19
+
20
+ <div class="home">
21
+
22
+ <h1 class="page-heading">Articles</h1>
23
+ {% if page.description %}<meta name="description" content="{{ page.description }}">{% endif %}
24
+ <ul class="post-list">
25
+ {% for post in site.posts %}
26
+ <li>
27
+ <span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
28
+
29
+ <h2>
30
+ <a class="post-link" href="{{ post.url | prepend: site.github.url }}">{{ post.title }}</a>
31
+ </h2>
32
+ </li>
33
+ {% endfor %}
34
+ </ul>
35
+
36
+ <p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.github.url }}">via RSS</a></p>
37
+
38
+ </div>
@@ -12,7 +12,7 @@ def setup
12
12
  sketch_title 'SVG to PDF sketch'
13
13
  RG.init(self)
14
14
  @grp = RG.load_shape(data_path('bot1.svg'))
15
- @pdf = create_graphics(width, height, PDF, 'bot1.pdf')
15
+ @pdf = create_graphics(width, height, PDF, data_path('bot1.pdf'))
16
16
  end
17
17
 
18
18
  def draw
@@ -21,11 +21,11 @@ Gem::Specification.new do |spec|
21
21
  spec.files << 'lib/geomerative.jar'
22
22
  spec.require_paths = ['lib']
23
23
  spec.add_dependency 'jruby_art', '~> 1.2'
24
- spec.add_development_dependency 'rake', '~> 11.1'
24
+ spec.add_development_dependency 'rake', '~> 11.2'
25
25
  # spec.add_development_dependency 'maven', '~> 3.3', '>= 3.3.3'
26
26
  spec.platform = 'java'
27
27
  spec.requirements << 'A decent graphics card'
28
28
  spec.requirements << 'java runtime >= 1.8+'
29
- spec.requirements << 'processing = 3.1.1+'
29
+ spec.requirements << 'processing = 3.2.1+'
30
30
  spec.requirements << 'jruby_art = 1.2+'
31
31
  end
@@ -1,3 +1,3 @@
1
1
  module Geomerative
2
- VERSION = '0.4.0'
2
+ VERSION = '0.4.2'
3
3
  end
data/pom.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  project 'geomerative' do
2
2
 
3
3
  model_version '4.0.0'
4
- id 'ruby-processing:geomerative:0.4.0'
4
+ id 'ruby-processing:geomerative:0.4.2'
5
5
  packaging 'jar'
6
6
 
7
7
  description 'geomerative-library for JRubyArt'
@@ -28,7 +28,7 @@ project 'geomerative' do
28
28
  'polyglot.dump.pom' => 'pom.xml'
29
29
  )
30
30
 
31
- jar 'org.processing:core:3.1.1'
31
+ jar 'org.processing:core:3.3.0'
32
32
 
33
33
  plugin( :compiler, '3.5.1',
34
34
  'source' => '${maven.compiler.source}',
data/pom.xml CHANGED
@@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
11
11
  <modelVersion>4.0.0</modelVersion>
12
12
  <groupId>ruby-processing</groupId>
13
13
  <artifactId>geomerative</artifactId>
14
- <version>0.4.0</version>
14
+ <version>0.4.2</version>
15
15
  <name>geomerative</name>
16
16
  <description>geomerative-library for JRubyArt</description>
17
17
  <organization>
@@ -53,7 +53,7 @@ DO NOT MODIFIY - GENERATED CODE
53
53
  <dependency>
54
54
  <groupId>org.processing</groupId>
55
55
  <artifactId>core</artifactId>
56
- <version>3.1.1</version>
56
+ <version>3.3.0</version>
57
57
  </dependency>
58
58
  </dependencies>
59
59
  <build>
@@ -73,10 +73,10 @@ public class RCommand extends RGeomElem {
73
73
  public static int segmentType = UNIFORMLENGTH;
74
74
 
75
75
  /* Parameters for ADAPTATIVE (dependent of the PGraphics on which drawing) */
76
- static final int segmentRecursionLimit = 32;
77
- static final float segmentDistanceEpsilon = 1.192092896e-07F;
78
- static final float segmentCollinearityEpsilon = 1.192092896e-07F;
79
- static final float segmentAngleTolEpsilon = 0.01F;
76
+ static final int SEGMENT_RECURSION_LIMIT = 32;
77
+ static final float SEGMENT_DISTANCE_EPSILON = 1.192092896e-07F;
78
+ static final float SEGMENT_COLLINEARITY_EPSILON = 1.192092896e-07F;
79
+ static final float SEGMENT_ANGLE_TOL_EPSILON = 0.01F;
80
80
 
81
81
  static float segmentGfxStrokeWeight = 1.0F;
82
82
  static float segmentGfxScale = 1.0F;
@@ -1057,7 +1057,7 @@ public class RCommand extends RGeomElem {
1057
1057
 
1058
1058
  private void quadBezierAdaptativeRecursive(float x1, float y1, float x2, float y2, float x3, float y3, int level) {
1059
1059
 
1060
- if (level > segmentRecursionLimit) {
1060
+ if (level > SEGMENT_RECURSION_LIMIT) {
1061
1061
  return;
1062
1062
  }
1063
1063
 
@@ -1074,14 +1074,14 @@ public class RCommand extends RGeomElem {
1074
1074
  float dy = y3 - y1;
1075
1075
  float d = Math.abs(((x2 - x3) * dy - (y2 - y3) * dx));
1076
1076
 
1077
- if (d > segmentCollinearityEpsilon) {
1077
+ if (d > SEGMENT_COLLINEARITY_EPSILON) {
1078
1078
  // Regular care
1079
1079
  //-----------------
1080
1080
  if (d * d <= segmentDistTolSqr * (dx * dx + dy * dy)) {
1081
1081
  // If the curvature doesn't exceed the distance_tolerance value
1082
1082
  // we tend to finish subdivisions.
1083
1083
  //----------------------
1084
- if (segmentAngleTol < segmentAngleTolEpsilon) {
1084
+ if (segmentAngleTol < SEGMENT_ANGLE_TOL_EPSILON) {
1085
1085
  addCurvePoint(new RPoint(x123, y123));
1086
1086
  return;
1087
1087
  }
@@ -1120,7 +1120,7 @@ public class RCommand extends RGeomElem {
1120
1120
  }
1121
1121
 
1122
1122
  private void cubicBezierAdaptativeRecursive(float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4, int level) {
1123
- if (level > segmentRecursionLimit) {
1123
+ if (level > SEGMENT_RECURSION_LIMIT) {
1124
1124
  return;
1125
1125
  }
1126
1126
 
@@ -1148,8 +1148,8 @@ public class RCommand extends RGeomElem {
1148
1148
  float d3 = Math.abs(((x3 - x4) * dy - (y3 - y4) * dx));
1149
1149
  float da1, da2;
1150
1150
 
1151
- int d2b = (d2 > segmentCollinearityEpsilon) ? 1 : 0;
1152
- int d3b = (d3 > segmentCollinearityEpsilon) ? 1 : 0;
1151
+ int d2b = (d2 > SEGMENT_COLLINEARITY_EPSILON) ? 1 : 0;
1152
+ int d3b = (d3 > SEGMENT_COLLINEARITY_EPSILON) ? 1 : 0;
1153
1153
  switch ((d2b << 1) + d3b) {
1154
1154
  case 0:
1155
1155
  // All collinear OR p1==p4
@@ -1167,7 +1167,7 @@ public class RCommand extends RGeomElem {
1167
1167
  // p1,p2,p4 are collinear, p3 is considerable
1168
1168
  //----------------------
1169
1169
  if (d3 * d3 <= segmentDistTolSqr * (dx * dx + dy * dy)) {
1170
- if (segmentAngleTol < segmentAngleTolEpsilon) {
1170
+ if (segmentAngleTol < SEGMENT_ANGLE_TOL_EPSILON) {
1171
1171
  addCurvePoint(new RPoint(x23, y23));
1172
1172
  return;
1173
1173
  }
@@ -1198,7 +1198,7 @@ public class RCommand extends RGeomElem {
1198
1198
  // p1,p3,p4 are collinear, p2 is considerable
1199
1199
  //----------------------
1200
1200
  if (d2 * d2 <= segmentDistTolSqr * (dx * dx + dy * dy)) {
1201
- if (segmentAngleTol < segmentAngleTolEpsilon) {
1201
+ if (segmentAngleTol < SEGMENT_ANGLE_TOL_EPSILON) {
1202
1202
  addCurvePoint(new RPoint(x23, y23));
1203
1203
  return;
1204
1204
  }
@@ -1232,7 +1232,7 @@ public class RCommand extends RGeomElem {
1232
1232
  // If the curvature doesn't exceed the distance_tolerance value
1233
1233
  // we tend to finish subdivisions.
1234
1234
  //----------------------
1235
- if (segmentAngleTol < segmentAngleTolEpsilon) {
1235
+ if (segmentAngleTol < SEGMENT_ANGLE_TOL_EPSILON) {
1236
1236
  addCurvePoint(new RPoint(x23, y23));
1237
1237
  return;
1238
1238
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: geomerative
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.2
5
5
  platform: java
6
6
  authors:
7
7
  - Ricard Marxer
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-07-20 00:00:00.000000000 Z
12
+ date: 2017-04-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: jruby_art
@@ -31,14 +31,14 @@ dependencies:
31
31
  requirements:
32
32
  - - "~>"
33
33
  - !ruby/object:Gem::Version
34
- version: '11.1'
34
+ version: '11.2'
35
35
  type: :development
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
39
  - - "~>"
40
40
  - !ruby/object:Gem::Version
41
- version: '11.1'
41
+ version: '11.2'
42
42
  description: |2
43
43
  Geomerative java library wrapped in a rubygem. Updated to use String switch
44
44
  etc available since jdk8.
@@ -60,6 +60,39 @@ files:
60
60
  - LICENSE.md
61
61
  - README.md
62
62
  - Rakefile
63
+ - calculate_torsional_angle.rb
64
+ - docs/.gitignore
65
+ - docs/_config.yml
66
+ - docs/_includes/footer.html
67
+ - docs/_includes/head.html
68
+ - docs/_includes/header.html
69
+ - docs/_includes/icon-github.html
70
+ - docs/_includes/icon-github.svg
71
+ - docs/_includes/icon-twitter.html
72
+ - docs/_includes/icon-twitter.svg
73
+ - docs/_layouts/default.html
74
+ - docs/_layouts/page.html
75
+ - docs/_layouts/post.html
76
+ - docs/_posts/2015-11-21-getting_started.md
77
+ - docs/_posts/2015-11-25-bubbles.md
78
+ - docs/_posts/2015-11-26-extra_bright.md
79
+ - docs/_posts/2015-11-26-text_merge.md
80
+ - docs/_posts/2016-07-06-dymo.md
81
+ - docs/_sass/_base.scss
82
+ - docs/_sass/_layout.scss
83
+ - docs/_sass/_syntax-highlighting.scss
84
+ - docs/about.md
85
+ - docs/assets/bright.png
86
+ - docs/assets/bubbles.png
87
+ - docs/assets/design.png
88
+ - docs/assets/dymo.png
89
+ - docs/assets/favicon.ico
90
+ - docs/assets/fred.png
91
+ - docs/assets/merge.png
92
+ - docs/css/main.scss
93
+ - docs/favicon.ico
94
+ - docs/feed.xml
95
+ - docs/index.html
63
96
  - examples/README.md
64
97
  - examples/Rakefile
65
98
  - examples/data/FreeSans.ttf
@@ -199,10 +232,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
199
232
  requirements:
200
233
  - A decent graphics card
201
234
  - java runtime >= 1.8+
202
- - processing = 3.1.1+
235
+ - processing = 3.2.1+
203
236
  - jruby_art = 1.2+
204
237
  rubyforge_project:
205
- rubygems_version: 2.6.3
238
+ rubygems_version: 2.6.11
206
239
  signing_key:
207
240
  specification_version: 4
208
241
  summary: Updated geomerative library for JRubyArt