math_demo 0.2.0-java → 0.3.0-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/circles.rb +0 -1
- data/lib/math_demo/t_points.rb +3 -2
- data/lib/math_demo/triangle_point.rb +4 -5
- data/lib/math_demo/version.rb +1 -1
- metadata +11 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 2fac5f6844ca1f369730b83286cb98d73c6cab36c8bad0b4413519b251f91b0d
|
4
|
+
data.tar.gz: d8b8a2fbf994065991a192a1b5e68bab03bd46064fd8d1c92fb0b86acd86b2ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d7d4e3a536ead9fea61e06fe42779a7e54efc0c28f31853c1f4f8f53f7fd5ef76b1c89a2728233125210f49288f412b4e52212d1e2a8c0121faaa129b6b0f76
|
7
|
+
data.tar.gz: 2a5d61984018026efdc7e3168a7af62af53eb5a25ac342654b0b3d785a30c3cad12f09a42a314ad3dfe25bb3a0cb2d1d9a4250b95f18c79d2e65048f4fdfca6c
|
data/lib/circles.rb
CHANGED
data/lib/math_demo/t_points.rb
CHANGED
@@ -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
|
-
|
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, :
|
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
|
-
@
|
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
|
37
|
-
@vel.y *= -1 if
|
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
|
|
data/lib/math_demo/version.rb
CHANGED
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.
|
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:
|
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.
|
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.
|
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:
|
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/
|
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
|
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.
|
90
|
+
rubygems_version: 2.7.3
|
89
91
|
signing_key:
|
90
92
|
specification_version: 4
|
91
|
-
summary:
|
93
|
+
summary: An example of a propane app as gem.
|
92
94
|
test_files: []
|