toxiclibs 0.9.0 → 0.9.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4b5be8e0c573faa23ad02a558c77445478237fc5
4
- data.tar.gz: 659987a4e12ab43503a3c32ada380f305650df44
3
+ metadata.gz: d1af28673c5330c233c143a8825eaedeec5993fc
4
+ data.tar.gz: aa5198bc7f98bea0f00398adff8bf4f85e90685a
5
5
  SHA512:
6
- metadata.gz: 70d3bb17683c238ff3a24d1e15fec9fe18e889583b7af082ef7551fca66ed547b76f6b022ac3c383a1ae2adf4360ce296e98190ba53b51810012668af5d47565
7
- data.tar.gz: 6a4a3769dd0a2edcd23b765375702a62b79a2ba3bdc6813ec81ae46fee66e1acd13d6a16617aa91328fc13bed930c6be3315bfc630c57dded27f1f10dbb6b09e
6
+ metadata.gz: 200337d7250d6d0059e0860384e0ab07889d0021484cf70e5b771b3bd8daccf1328600238f41506dd3b73097196ef1732452d48da46d8f33e54b124f2f76502a
7
+ data.tar.gz: cde9e87efd021494b928cb5d11027b4d1232477da608ab39987ed6393a0f2eb187fef106a50a34b54284bee5509e3b30b15ee81f2165bb619dc04b3d01c941b4
@@ -1,4 +1,6 @@
1
1
 
2
+ **v0.9.1** Make it easier to load PerlinNoise and SimplexNoise
3
+
2
4
  **v0.9.0** Updated maven artifacts, somewhat arbitarily require JRubyArt-1.2+
3
5
 
4
6
  **v0.8.0** Use `data_path`
data/README.md CHANGED
@@ -25,7 +25,7 @@ This gem provides Karsten Schmidts (aka toxi, @postspectacular) toxiclibs jars f
25
25
 
26
26
  ### Licensing
27
27
 
28
- I should be clear that the original toxiclibs is the work of Karsten Schmidt see [Copyright[]
28
+ I should be clear that the original toxiclibs is the work of Karsten Schmidt see [Copyright][]
29
29
 
30
30
  This demo & library is free software you can redistribute it and/or
31
31
  modify it under the terms of the GNU Lesser General Public
@@ -1,6 +1,6 @@
1
1
  if RUBY_PLATFORM == 'java'
2
2
  require 'toxiclibs.jar'
3
-
3
+
4
4
  def import_class_list(list, string)
5
5
  list.each { |klass| java_import format(string, klass) }
6
6
  end
@@ -55,6 +55,9 @@ if RUBY_PLATFORM == 'java'
55
55
  nurbs_format = 'toxi.geom.nurbs.%s'
56
56
  import_class_list(nurbs, nurbs_format)
57
57
  include_package 'toxi.math'
58
+ noise = %w(SimplexNoise PerlinNoise)
59
+ noise_format = 'toxi.math.noise.%s'
60
+ import_class_list(noise, noise_format)
58
61
  geom = %w(AABB Axis3D AxisAlignedCylinder BernsteinPolynomial BezierCurve2D
59
62
  BezierCurve3D BooleanShapeBuilder BoxIntersector Circle CircleIntersector
60
63
  Cone ConvexPolygonClipper CoordinateExtractor Ellipse GMatrix GVector
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Toxiclibs
3
- VERSION = '0.9.0'.freeze
3
+ VERSION = '0.9.1'.freeze
4
4
  end
data/pom.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  project 'toxiclibs' do
2
2
 
3
3
  model_version '4.0.0'
4
- id 'ruby-processing:toxiclibs:0.9.0'
4
+ id 'ruby-processing:toxiclibs:0.9.1'
5
5
  packaging 'jar'
6
6
 
7
7
  description 'toxiclibs-library for JRubyArt'
@@ -30,7 +30,7 @@ project 'toxiclibs' do
30
30
 
31
31
  jar 'org.jogamp.joal:joal-main:2.3.1'
32
32
  jar 'args4j:args4j:2.0.31'
33
- jar 'org.processing:core:3.1.1'
33
+ jar 'org.processing:core:3.2.1'
34
34
 
35
35
  plugin( :compiler, '3.5.1',
36
36
  'source' => '1.8',
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>toxiclibs</artifactId>
14
- <version>0.9.0</version>
14
+ <version>0.9.1</version>
15
15
  <name>toxiclibs</name>
16
16
  <description>toxiclibs-library for JRubyArt</description>
17
17
  <organization>
@@ -63,7 +63,7 @@ DO NOT MODIFIY - GENERATED CODE
63
63
  <dependency>
64
64
  <groupId>org.processing</groupId>
65
65
  <artifactId>core</artifactId>
66
- <version>3.1.1</version>
66
+ <version>3.2.1</version>
67
67
  </dependency>
68
68
  </dependencies>
69
69
  <build>
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.extra_rdoc_files = %w{README.md LICENSE.md}
11
11
  spec.summary = %q{Updated and extended toxiclibs libraries for JRubyArt}
12
12
  spec.description =<<-EOS
13
- Toxiclibs java libraries wrapped in a rubygem. Compiled and tested with JRubyArt-1.2.0 and processing-3.1.1
13
+ Toxiclibs java libraries wrapped in a rubygem. Compiled and tested with JRubyArt-1.2.5 and processing-3.2.1
14
14
  EOS
15
15
  spec.licenses = %w{MIT LGPL-3.0}
16
16
  spec.authors = %w{Karsten\ Schmidt Martin\ Prout}
@@ -22,5 +22,5 @@ Gem::Specification.new do |spec|
22
22
  spec.files << 'lib/joal-2.3.1.jar'
23
23
  spec.require_paths = ['lib']
24
24
  spec.add_dependency 'jruby_art', '~> 1.2'
25
- spec.add_development_dependency 'rake', '~> 11.1', '>= 11.1.1'
25
+ spec.add_development_dependency 'rake', '~> 11.2', '>= 11.2.2'
26
26
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: toxiclibs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Karsten Schmidt
@@ -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: 2016-10-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: jruby_art
@@ -31,22 +31,22 @@ dependencies:
31
31
  requirements:
32
32
  - - "~>"
33
33
  - !ruby/object:Gem::Version
34
- version: '11.1'
34
+ version: '11.2'
35
35
  - - ">="
36
36
  - !ruby/object:Gem::Version
37
- version: 11.1.1
37
+ version: 11.2.2
38
38
  type: :development
39
39
  prerelease: false
40
40
  version_requirements: !ruby/object:Gem::Requirement
41
41
  requirements:
42
42
  - - "~>"
43
43
  - !ruby/object:Gem::Version
44
- version: '11.1'
44
+ version: '11.2'
45
45
  - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: 11.1.1
47
+ version: 11.2.2
48
48
  description: " Toxiclibs java libraries wrapped in a rubygem. Compiled and tested
49
- with JRubyArt-1.2.0 and processing-3.1.1\n"
49
+ with JRubyArt-1.2.5 and processing-3.2.1\n"
50
50
  email: mamba2928@yahoo.co.uk
51
51
  executables: []
52
52
  extensions: []