math_demo 0.2.0-java → 0.3.0-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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 1a614497ed312619c49a17d3244e2036885b9038
4
- data.tar.gz: 5f30488fbee2fc8910b7ecc2f9a2571704ce1459
2
+ SHA256:
3
+ metadata.gz: 2fac5f6844ca1f369730b83286cb98d73c6cab36c8bad0b4413519b251f91b0d
4
+ data.tar.gz: d8b8a2fbf994065991a192a1b5e68bab03bd46064fd8d1c92fb0b86acd86b2ad
5
5
  SHA512:
6
- metadata.gz: dc643976976cf90b0a33980fb98111f18e84da2b4c5420ed9911ae44ef9b342b527eddc6b667eb9b1f1f4e811e4d4dfe81f50ebc22c8d7c7afe8655685db7214
7
- data.tar.gz: 21756afc665ac76ecce61a2f4e0fef091b4969d4a5b8fd801829d68f3dca840debc8e8d80dbed0179902f6a2b392d41652cc9c67cad9c97e95d3a205d35fe07a
6
+ metadata.gz: 1d7d4e3a536ead9fea61e06fe42779a7e54efc0c28f31853c1f4f8f53f7fd5ef76b1c89a2728233125210f49288f412b4e52212d1e2a8c0121faaa129b6b0f76
7
+ data.tar.gz: 2a5d61984018026efdc7e3168a7af62af53eb5a25ac342654b0b3d785a30c3cad12f09a42a314ad3dfe25bb3a0cb2d1d9a4250b95f18c79d2e65048f4fdfca6c
@@ -52,4 +52,3 @@ class Circles < Propane::App
52
52
  end
53
53
  end
54
54
 
55
- Circles.new
@@ -2,7 +2,7 @@
2
2
  require 'forwardable'
3
3
  MAX_POINT = 3
4
4
  # A collection of a maximum of 3 points in the processing world
5
- # includes a collinearity test using Vec2D
5
+ # includes a collinearity test using Vec2D positions
6
6
  class TrianglePoints
7
7
  extend Forwardable
8
8
  def_delegators(:@points, :each, :map, :size, :shift, :clear, :[])
@@ -20,7 +20,8 @@ class TrianglePoints
20
20
  end
21
21
 
22
22
  def collinear?
23
- full? ? (positions[0] - positions[1]).cross(positions[1] - positions[2]).zero? : false
23
+ first, second, third = positions
24
+ full? ? (first - second).cross(second - third).zero? : false
24
25
  end
25
26
 
26
27
  # returns positions as an array of Vec2D
@@ -2,15 +2,14 @@
2
2
  # particle and triangle point
3
3
  class TPoint
4
4
  include Propane::Proxy
5
- attr_reader :pos, :vel, :accel, :xbound, :ybound
5
+ attr_reader :pos, :vel, :accel, :bounds
6
6
  # attr_reader :width, :height # uncomment for testing
7
7
 
8
8
  def initialize(position)
9
9
  @pos = position
10
10
  @vel = Vec2D.new
11
11
  @accel = Vec2D.random
12
- @xbound = Boundary.new(0, width)
13
- @ybound = Boundary.new(0, height)
12
+ @bounds = [Boundary.new(0, width), Boundary.new(0, height)]
14
13
  end
15
14
 
16
15
  def direction(acc)
@@ -33,8 +32,8 @@ class TPoint
33
32
  private
34
33
 
35
34
  def check_bounds
36
- @vel.x *= -1 if xbound.exclude? pos.x
37
- @vel.y *= -1 if ybound.exclude? pos.y
35
+ @vel.x *= -1 if bounds[0].exclude? pos.x
36
+ @vel.y *= -1 if bounds[1].exclude? pos.y
38
37
  end
39
38
  end
40
39
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  # A wrapper for version
3
3
  module MathDemo
4
- VERSION = '0.2.0'.freeze
4
+ VERSION = '0.3.0'.freeze
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: math_demo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: java
6
6
  authors:
7
7
  - monkstone
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-31 00:00:00.000000000 Z
11
+ date: 2018-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: propane
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '2.3'
19
+ version: '2.6'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '2.3'
26
+ version: '2.6'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -52,7 +52,9 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '5.10'
55
- description: " Math Demo uses propane (a ruby wrapper for the processing art framework)\n"
55
+ description: |2
56
+ Geomerative art using the ruby Matrix class to generate circumcircles around
57
+ triangles, created from moving points
56
58
  email: mamba2928@yahoo.co.uk
57
59
  executables:
58
60
  - math_demo
@@ -65,11 +67,11 @@ files:
65
67
  - lib/math_demo/t_points.rb
66
68
  - lib/math_demo/triangle_point.rb
67
69
  - lib/math_demo/version.rb
68
- homepage: https://ruby-processing.github.io/propane/
70
+ homepage: https://ruby-processing.github.io/math_demo/
69
71
  licenses:
70
72
  - GPL-3.0
71
73
  metadata: {}
72
- post_install_message: Congratulations you've just installed a propane gem.
74
+ post_install_message: Congratulations you've just installed propane.
73
75
  rdoc_options: []
74
76
  require_paths:
75
77
  - lib
@@ -85,8 +87,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
85
87
  version: '0'
86
88
  requirements: []
87
89
  rubyforge_project:
88
- rubygems_version: 2.5.1
90
+ rubygems_version: 2.7.3
89
91
  signing_key:
90
92
  specification_version: 4
91
- summary: Example of creating a propane app.
93
+ summary: An example of a propane app as gem.
92
94
  test_files: []