grid_generator 0.4.0 → 0.4.1
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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/grid_generator/curvy_copter/element_factory.rb +144 -0
- data/lib/grid_generator/curvy_copter/grid.rb +56 -0
- data/lib/grid_generator/curvy_copter/left_element_factory.rb +37 -0
- data/lib/grid_generator/curvy_copter/left_grid.rb +13 -0
- data/lib/grid_generator/curvy_copter/right_element_factory.rb +37 -0
- data/lib/grid_generator/curvy_copter/right_grid.rb +13 -0
- data/lib/grid_generator/curvy_copter/top_element_factory.rb +2 -134
- data/lib/grid_generator/curvy_copter/top_grid.rb +4 -48
- data/lib/grid_generator/version.rb +1 -1
- data/lib/grid_generator.rb +10 -0
- metadata +8 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ac9ef7317cd0dac36826db72f9bec140e103819ccf1a73bb716c77717f934c6
|
4
|
+
data.tar.gz: 4cd030cf4ae775dfd56f3f4067a7deaaf796a1a3b658264565a80f760314af65
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ac448265f10cb14b73effbcb0da1faadec2bd070fd0e99f27f2a841151f0a3681b25875bca86b34de03c5f41e1f9c48e64f71014d2fe46472336997277b97bb
|
7
|
+
data.tar.gz: e3cb334d24401f39a9c52c795f31f3831c04d16d31aa4e77f1d16aa63e02bd13255895eceaf219b7430cefadcd934fc0515c6e0d0bea7bebb73259a03b9743b9
|
data/Gemfile.lock
CHANGED
@@ -0,0 +1,144 @@
|
|
1
|
+
require 'matrix'
|
2
|
+
require_relative '../svg/style'
|
3
|
+
require_relative '../svg/path'
|
4
|
+
require_relative '../svg/move_command'
|
5
|
+
require_relative '../svg/line_command'
|
6
|
+
require_relative '../svg/quadratic_command'
|
7
|
+
require_relative '../svg/close_command'
|
8
|
+
|
9
|
+
module GridGenerator
|
10
|
+
module CurvyCopter
|
11
|
+
class ElementFactory
|
12
|
+
def initialize(grid_x:, grid_y:, row_num:, col_num:, units:, colour:, opacity:)
|
13
|
+
@grid_x, @grid_y = grid_x, grid_y
|
14
|
+
@row_num, @col_num = row_num, col_num
|
15
|
+
@units = units
|
16
|
+
@colour, @opacity = colour, opacity
|
17
|
+
end
|
18
|
+
|
19
|
+
attr_reader :grid_x, :grid_y, :row_num, :col_num, :units, :colour, :opacity
|
20
|
+
|
21
|
+
def offset
|
22
|
+
@offset ||= Matrix.column_vector([grid_x, grid_y])
|
23
|
+
end
|
24
|
+
|
25
|
+
def anchors
|
26
|
+
{}
|
27
|
+
end
|
28
|
+
|
29
|
+
def commands
|
30
|
+
case [row_num, col_num]
|
31
|
+
when [0, 0] # Top Left Corner
|
32
|
+
[
|
33
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:top_left_corner]]),
|
34
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:top_edge_left]]),
|
35
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:top_left_corner_center], anchors[:left_edge_top]]),
|
36
|
+
GridGenerator::Svg::CloseCommand.new
|
37
|
+
]
|
38
|
+
when [0, 1] # Top Middle Edge
|
39
|
+
[
|
40
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:top_edge_left]]),
|
41
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:top_edge_right]]),
|
42
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:top_edge_center], anchors[:center]]),
|
43
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:top_edge_center], anchors[:top_edge_left]]),
|
44
|
+
GridGenerator::Svg::CloseCommand.new
|
45
|
+
]
|
46
|
+
when [0, 2] # Top Right Corner
|
47
|
+
[
|
48
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:top_edge_right]]),
|
49
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:top_right_corner]]),
|
50
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:right_edge_top]]),
|
51
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:top_right_corner_center], anchors[:top_edge_right]]),
|
52
|
+
GridGenerator::Svg::CloseCommand.new
|
53
|
+
]
|
54
|
+
when [1, 0] # Top Left Middle
|
55
|
+
[
|
56
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:top_edge_left]]),
|
57
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:top_edge_center], anchors[:center]]),
|
58
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:left_edge_center], anchors[:left_edge_top]]),
|
59
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:top_left_corner_center], anchors[:top_edge_left]]),
|
60
|
+
GridGenerator::Svg::CloseCommand.new
|
61
|
+
]
|
62
|
+
when [1, 1] # Top Right Middle
|
63
|
+
[
|
64
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:top_edge_right]]),
|
65
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:top_right_corner_center], anchors[:right_edge_top]]),
|
66
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:right_edge_center], anchors[:center]]),
|
67
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:top_edge_center], anchors[:top_edge_right]]),
|
68
|
+
GridGenerator::Svg::CloseCommand.new
|
69
|
+
]
|
70
|
+
when [2, 0] # Middle Left Edge
|
71
|
+
[
|
72
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:left_edge_top]]),
|
73
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:left_edge_center], anchors[:center]]),
|
74
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:left_edge_center], anchors[:left_edge_bottom]]),
|
75
|
+
GridGenerator::Svg::CloseCommand.new
|
76
|
+
]
|
77
|
+
when [2, 1] # Middle Right Edge
|
78
|
+
[
|
79
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:right_edge_top]]),
|
80
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:right_edge_bottom]]),
|
81
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:right_edge_center], anchors[:center]]),
|
82
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:right_edge_center], anchors[:right_edge_top]]),
|
83
|
+
GridGenerator::Svg::CloseCommand.new
|
84
|
+
]
|
85
|
+
when [3, 0] # Bottom Left Middle
|
86
|
+
[
|
87
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:left_edge_bottom]]),
|
88
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:left_edge_center], anchors[:center]]),
|
89
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:bottom_edge_center], anchors[:bottom_edge_left]]),
|
90
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:bottom_left_corner_center], anchors[:left_edge_bottom]]),
|
91
|
+
GridGenerator::Svg::CloseCommand.new
|
92
|
+
]
|
93
|
+
when [3, 1] # Bottom Right Middle
|
94
|
+
[
|
95
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:center]]),
|
96
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:right_edge_center], anchors[:right_edge_bottom]]),
|
97
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:bottom_right_corner_center], anchors[:bottom_edge_right]]),
|
98
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:bottom_edge_center], anchors[:center]]),
|
99
|
+
GridGenerator::Svg::CloseCommand.new
|
100
|
+
]
|
101
|
+
when [4, 0] # Bottom Left Corner
|
102
|
+
[
|
103
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:left_edge_bottom]]),
|
104
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:bottom_left_corner_center], anchors[:bottom_edge_left]]),
|
105
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:bottom_left_corner]]),
|
106
|
+
GridGenerator::Svg::CloseCommand.new
|
107
|
+
]
|
108
|
+
when [4, 1] # Bottom Middle Edge
|
109
|
+
[
|
110
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:center]]),
|
111
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:bottom_edge_center], anchors[:bottom_edge_right]]),
|
112
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:bottom_edge_left]]),
|
113
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:bottom_edge_center], anchors[:center]]),
|
114
|
+
GridGenerator::Svg::CloseCommand.new
|
115
|
+
]
|
116
|
+
when [4, 2] # Bottom Right Corner
|
117
|
+
[
|
118
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:right_edge_bottom]]),
|
119
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:bottom_right_corner]]),
|
120
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:bottom_edge_right]]),
|
121
|
+
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:bottom_right_corner_center], anchors[:right_edge_bottom]]),
|
122
|
+
GridGenerator::Svg::CloseCommand.new
|
123
|
+
]
|
124
|
+
else
|
125
|
+
[]
|
126
|
+
end
|
127
|
+
end
|
128
|
+
|
129
|
+
def style
|
130
|
+
GridGenerator::Svg::Style.new(fill: colour, opacity: opacity)
|
131
|
+
end
|
132
|
+
|
133
|
+
def d
|
134
|
+
commands.map do |c|
|
135
|
+
(c + offset)
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|
139
|
+
def build
|
140
|
+
GridGenerator::Svg::Path.new(d: d, style: style)
|
141
|
+
end
|
142
|
+
end
|
143
|
+
end
|
144
|
+
end
|
@@ -0,0 +1,56 @@
|
|
1
|
+
require_relative '../face_parser'
|
2
|
+
|
3
|
+
module GridGenerator
|
4
|
+
module CurvyCopter
|
5
|
+
class Grid
|
6
|
+
def initialize(x:, y:, units: , elements: )
|
7
|
+
@x, @y = x, y
|
8
|
+
@units = units
|
9
|
+
@elements = case elements
|
10
|
+
when String
|
11
|
+
FaceParser.new(elements).parse
|
12
|
+
when Array
|
13
|
+
elements
|
14
|
+
else
|
15
|
+
raise ArgumentError, "elements must be array or string"
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
attr_reader :x, :y, :units, :elements
|
20
|
+
|
21
|
+
def to_svg
|
22
|
+
output = ''
|
23
|
+
|
24
|
+
element_shapes.each { |element| output += element.to_svg if element }
|
25
|
+
|
26
|
+
output
|
27
|
+
end
|
28
|
+
|
29
|
+
private
|
30
|
+
|
31
|
+
def build_element(row_num, col_num, data)
|
32
|
+
if data
|
33
|
+
element_factory_class.new(
|
34
|
+
grid_x: x,
|
35
|
+
grid_y: y,
|
36
|
+
row_num: row_num,
|
37
|
+
col_num: col_num,
|
38
|
+
units: units,
|
39
|
+
colour: data[:colour],
|
40
|
+
opacity: data[:opacity]
|
41
|
+
).build
|
42
|
+
else
|
43
|
+
nil
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
def element_shapes
|
48
|
+
elements.each_with_index.map do |row, row_num|
|
49
|
+
row.each_with_index.map do |col, col_num|
|
50
|
+
build_element(row_num, col_num, col)
|
51
|
+
end
|
52
|
+
end.flatten.compact
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
require_relative './element_factory'
|
2
|
+
|
3
|
+
module GridGenerator
|
4
|
+
module CurvyCopter
|
5
|
+
class LeftElementFactory < ElementFactory
|
6
|
+
def anchors
|
7
|
+
@anchors ||= {
|
8
|
+
top_left_corner: Matrix.column_vector([0, 0]),
|
9
|
+
top_right_corner: Matrix.column_vector([3*units, 1.5*units]),
|
10
|
+
bottom_left_corner: Matrix.column_vector([0, 3*units]),
|
11
|
+
bottom_right_corner: Matrix.column_vector([3*units, 4.5*units]),
|
12
|
+
|
13
|
+
top_edge_left: Matrix.column_vector([units, 0.5*units]),
|
14
|
+
top_edge_right: Matrix.column_vector([2*units, units]),
|
15
|
+
right_edge_top: Matrix.column_vector([3*units, 2.5*units]),
|
16
|
+
right_edge_bottom: Matrix.column_vector([3*units, 3.5*units]),
|
17
|
+
bottom_edge_left: Matrix.column_vector([units, 3.5*units]),
|
18
|
+
bottom_edge_right: Matrix.column_vector([2*units, 4*units]),
|
19
|
+
left_edge_top: Matrix.column_vector([0, units]),
|
20
|
+
left_edge_bottom: Matrix.column_vector([0, 2*units]),
|
21
|
+
|
22
|
+
center: Matrix.column_vector([1.5*units, 2.25*units]),
|
23
|
+
|
24
|
+
top_edge_center: Matrix.column_vector([1.5*units, 1.5*units]),
|
25
|
+
right_edge_center: Matrix.column_vector([2.25*units, 2.625*units ]),
|
26
|
+
bottom_edge_center: Matrix.column_vector([1.5*units, 3*units ]),
|
27
|
+
left_edge_center: Matrix.column_vector([0.75*units, 1.875*units]),
|
28
|
+
|
29
|
+
top_left_corner_center: Matrix.column_vector([0.75*units, 1.125*units]),
|
30
|
+
top_right_corner_center: Matrix.column_vector([2.25*units, 1.875*units]),
|
31
|
+
bottom_left_corner_center: Matrix.column_vector([0.75*units, 2.625*units ]),
|
32
|
+
bottom_right_corner_center: Matrix.column_vector([2.25*units,3.375*units])
|
33
|
+
}
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
require_relative './element_factory'
|
2
|
+
|
3
|
+
module GridGenerator
|
4
|
+
module CurvyCopter
|
5
|
+
class RightElementFactory < ElementFactory
|
6
|
+
def anchors
|
7
|
+
@anchors ||= {
|
8
|
+
top_left_corner: Matrix.column_vector([0, 1.5*units]),
|
9
|
+
top_right_corner: Matrix.column_vector([3*units, 0*units]),
|
10
|
+
bottom_left_corner: Matrix.column_vector([0, 4.5*units]),
|
11
|
+
bottom_right_corner: Matrix.column_vector([3*units, 3*units]),
|
12
|
+
|
13
|
+
top_edge_left: Matrix.column_vector([units, units]),
|
14
|
+
top_edge_right: Matrix.column_vector([2*units, 0.5*units]),
|
15
|
+
right_edge_top: Matrix.column_vector([3*units, units]),
|
16
|
+
right_edge_bottom: Matrix.column_vector([3*units, 2*units]),
|
17
|
+
bottom_edge_left: Matrix.column_vector([units, 4*units]),
|
18
|
+
bottom_edge_right: Matrix.column_vector([2*units, 3.5*units]),
|
19
|
+
left_edge_top: Matrix.column_vector([0, 2.5*units]),
|
20
|
+
left_edge_bottom: Matrix.column_vector([0, 3.5*units]),
|
21
|
+
|
22
|
+
center: Matrix.column_vector([1.5*units, 2.25*units]),
|
23
|
+
|
24
|
+
top_edge_center: Matrix.column_vector([1.5*units, 1.5*units]),
|
25
|
+
right_edge_center: Matrix.column_vector([2.25*units, 1.875*units ]),
|
26
|
+
bottom_edge_center: Matrix.column_vector([1.5*units, 3*units ]),
|
27
|
+
left_edge_center: Matrix.column_vector([0.75*units, 2.625*units]),
|
28
|
+
|
29
|
+
top_left_corner_center: Matrix.column_vector([0.75*units, 1.875*units]),
|
30
|
+
top_right_corner_center: Matrix.column_vector([2.25*units, 1.125*units]),
|
31
|
+
bottom_left_corner_center: Matrix.column_vector([0.75*units, 3.375*units ]),
|
32
|
+
bottom_right_corner_center: Matrix.column_vector([2.25*units, 2.625*units])
|
33
|
+
}
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require_relative '../face_parser'
|
2
|
+
require_relative './grid'
|
3
|
+
require_relative './right_element_factory'
|
4
|
+
|
5
|
+
module GridGenerator
|
6
|
+
module CurvyCopter
|
7
|
+
class RightGrid < Grid
|
8
|
+
def element_factory_class
|
9
|
+
RightElementFactory
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -1,26 +1,8 @@
|
|
1
|
-
require_relative '
|
2
|
-
require_relative '../svg/path'
|
3
|
-
require_relative '../svg/move_command'
|
4
|
-
require_relative '../svg/line_command'
|
5
|
-
require_relative '../svg/quadratic_command'
|
6
|
-
require_relative '../svg/close_command'
|
1
|
+
require_relative './element_factory'
|
7
2
|
|
8
3
|
module GridGenerator
|
9
4
|
module CurvyCopter
|
10
|
-
class TopElementFactory
|
11
|
-
def initialize(grid_x:, grid_y:, row_num:, col_num:, units:, colour:, opacity:)
|
12
|
-
@grid_x, @grid_y = grid_x, grid_y
|
13
|
-
@row_num, @col_num = row_num, col_num
|
14
|
-
@units = units
|
15
|
-
@colour, @opacity = colour, opacity
|
16
|
-
end
|
17
|
-
|
18
|
-
attr_reader :grid_x, :grid_y, :row_num, :col_num, :units, :colour, :opacity
|
19
|
-
|
20
|
-
def offset
|
21
|
-
Matrix.column_vector([grid_x, grid_y])
|
22
|
-
end
|
23
|
-
|
5
|
+
class TopElementFactory < ElementFactory
|
24
6
|
def anchors
|
25
7
|
@anchors ||= {
|
26
8
|
top_left_corner: Matrix.column_vector([3*units, 0]),
|
@@ -50,120 +32,6 @@ module GridGenerator
|
|
50
32
|
bottom_right_corner_center: Matrix.column_vector([3*units, 2.25*units])
|
51
33
|
}
|
52
34
|
end
|
53
|
-
|
54
|
-
def commands
|
55
|
-
case [row_num, col_num]
|
56
|
-
when [0, 0] # Top Left Corner
|
57
|
-
[
|
58
|
-
GridGenerator::Svg::MoveCommand.new(points: [anchors[:top_left_corner]]),
|
59
|
-
GridGenerator::Svg::LineCommand.new(points: [anchors[:top_edge_left]]),
|
60
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:top_left_corner_center], anchors[:left_edge_top]]),
|
61
|
-
GridGenerator::Svg::CloseCommand.new
|
62
|
-
]
|
63
|
-
when [0, 1] # Top Middle Edge
|
64
|
-
[
|
65
|
-
GridGenerator::Svg::MoveCommand.new(points: [anchors[:top_edge_left]]),
|
66
|
-
GridGenerator::Svg::LineCommand.new(points: [anchors[:top_edge_right]]),
|
67
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:top_edge_center], anchors[:center]]),
|
68
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:top_edge_center], anchors[:top_edge_left]]),
|
69
|
-
GridGenerator::Svg::CloseCommand.new
|
70
|
-
]
|
71
|
-
when [0, 2] # Top Right Corner
|
72
|
-
[
|
73
|
-
GridGenerator::Svg::MoveCommand.new(points: [anchors[:top_edge_right]]),
|
74
|
-
GridGenerator::Svg::LineCommand.new(points: [anchors[:top_right_corner]]),
|
75
|
-
GridGenerator::Svg::LineCommand.new(points: [anchors[:right_edge_top]]),
|
76
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:top_right_corner_center], anchors[:top_edge_right]]),
|
77
|
-
GridGenerator::Svg::CloseCommand.new
|
78
|
-
]
|
79
|
-
when [1, 0] # Top Left Middle
|
80
|
-
[
|
81
|
-
GridGenerator::Svg::MoveCommand.new(points: [anchors[:top_edge_left]]),
|
82
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:top_edge_center], anchors[:center]]),
|
83
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:left_edge_center], anchors[:left_edge_top]]),
|
84
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:top_left_corner_center], anchors[:top_edge_left]]),
|
85
|
-
GridGenerator::Svg::CloseCommand.new
|
86
|
-
]
|
87
|
-
when [1, 1] # Top Right Middle
|
88
|
-
[
|
89
|
-
GridGenerator::Svg::MoveCommand.new(points: [anchors[:top_edge_right]]),
|
90
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:top_right_corner_center], anchors[:right_edge_top]]),
|
91
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:right_edge_center], anchors[:center]]),
|
92
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:top_edge_center], anchors[:top_edge_right]]),
|
93
|
-
GridGenerator::Svg::CloseCommand.new
|
94
|
-
]
|
95
|
-
when [2, 0] # Middle Left Edge
|
96
|
-
[
|
97
|
-
GridGenerator::Svg::MoveCommand.new(points: [anchors[:left_edge_top]]),
|
98
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:left_edge_center], anchors[:center]]),
|
99
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:left_edge_center], anchors[:left_edge_bottom]]),
|
100
|
-
GridGenerator::Svg::CloseCommand.new
|
101
|
-
]
|
102
|
-
when [2, 1] # Middle Right Edge
|
103
|
-
[
|
104
|
-
GridGenerator::Svg::MoveCommand.new(points: [anchors[:right_edge_top]]),
|
105
|
-
GridGenerator::Svg::LineCommand.new(points: [anchors[:right_edge_bottom]]),
|
106
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:right_edge_center], anchors[:center]]),
|
107
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:right_edge_center], anchors[:right_edge_top]]),
|
108
|
-
GridGenerator::Svg::CloseCommand.new
|
109
|
-
]
|
110
|
-
when [3, 0] # Bottom Left Middle
|
111
|
-
[
|
112
|
-
GridGenerator::Svg::MoveCommand.new(points: [anchors[:left_edge_bottom]]),
|
113
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:left_edge_center], anchors[:center]]),
|
114
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:bottom_edge_center], anchors[:bottom_edge_left]]),
|
115
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:bottom_left_corner_center], anchors[:left_edge_bottom]]),
|
116
|
-
GridGenerator::Svg::CloseCommand.new
|
117
|
-
]
|
118
|
-
when [3, 1] # Bottom Right Middle
|
119
|
-
[
|
120
|
-
GridGenerator::Svg::MoveCommand.new(points: [anchors[:center]]),
|
121
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:right_edge_center], anchors[:right_edge_bottom]]),
|
122
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:bottom_right_corner_center], anchors[:bottom_edge_right]]),
|
123
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:bottom_edge_center], anchors[:center]]),
|
124
|
-
GridGenerator::Svg::CloseCommand.new
|
125
|
-
]
|
126
|
-
when [4, 0] # Bottom Left Corner
|
127
|
-
[
|
128
|
-
GridGenerator::Svg::MoveCommand.new(points: [anchors[:left_edge_bottom]]),
|
129
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:bottom_left_corner_center], anchors[:bottom_edge_left]]),
|
130
|
-
GridGenerator::Svg::LineCommand.new(points: [anchors[:bottom_left_corner]]),
|
131
|
-
GridGenerator::Svg::CloseCommand.new
|
132
|
-
]
|
133
|
-
when [4, 1] # Bottom Middle Edge
|
134
|
-
[
|
135
|
-
GridGenerator::Svg::MoveCommand.new(points: [anchors[:center]]),
|
136
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:bottom_edge_center], anchors[:bottom_edge_right]]),
|
137
|
-
GridGenerator::Svg::LineCommand.new(points: [anchors[:bottom_edge_left]]),
|
138
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:bottom_edge_center], anchors[:center]]),
|
139
|
-
GridGenerator::Svg::CloseCommand.new
|
140
|
-
]
|
141
|
-
when [4, 2] # Bottom Right Corner
|
142
|
-
[
|
143
|
-
GridGenerator::Svg::MoveCommand.new(points: [anchors[:right_edge_bottom]]),
|
144
|
-
GridGenerator::Svg::LineCommand.new(points: [anchors[:bottom_right_corner]]),
|
145
|
-
GridGenerator::Svg::LineCommand.new(points: [anchors[:bottom_edge_right]]),
|
146
|
-
GridGenerator::Svg::QuadraticCommand.new(points: [anchors[:bottom_right_corner_center], anchors[:right_edge_bottom]]),
|
147
|
-
GridGenerator::Svg::CloseCommand.new
|
148
|
-
]
|
149
|
-
else
|
150
|
-
[]
|
151
|
-
end
|
152
|
-
end
|
153
|
-
|
154
|
-
def style
|
155
|
-
GridGenerator::Svg::Style.new(fill: colour, opacity: opacity)
|
156
|
-
end
|
157
|
-
|
158
|
-
def d
|
159
|
-
commands.map do |c|
|
160
|
-
(c + offset)
|
161
|
-
end
|
162
|
-
end
|
163
|
-
|
164
|
-
def build
|
165
|
-
GridGenerator::Svg::Path.new(d: d, style: style)
|
166
|
-
end
|
167
35
|
end
|
168
36
|
end
|
169
37
|
end
|
@@ -1,56 +1,12 @@
|
|
1
1
|
require_relative '../face_parser'
|
2
|
+
require_relative './grid'
|
2
3
|
require_relative './top_element_factory'
|
3
4
|
|
4
5
|
module GridGenerator
|
5
6
|
module CurvyCopter
|
6
|
-
class TopGrid
|
7
|
-
def
|
8
|
-
|
9
|
-
@units = units
|
10
|
-
@elements = case elements
|
11
|
-
when String
|
12
|
-
FaceParser.new(elements).parse
|
13
|
-
when Array
|
14
|
-
elements
|
15
|
-
else
|
16
|
-
raise ArgumentError, "elements must be array or string"
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
attr_reader :x, :y, :units, :elements
|
21
|
-
|
22
|
-
def to_svg
|
23
|
-
output = ''
|
24
|
-
|
25
|
-
element_shapes.each { |element| output += element.to_svg if element }
|
26
|
-
|
27
|
-
output
|
28
|
-
end
|
29
|
-
|
30
|
-
private
|
31
|
-
|
32
|
-
def build_element(row_num, col_num, data)
|
33
|
-
if data
|
34
|
-
TopElementFactory.new(
|
35
|
-
grid_x: x,
|
36
|
-
grid_y: y,
|
37
|
-
row_num: row_num,
|
38
|
-
col_num: col_num,
|
39
|
-
units: units,
|
40
|
-
colour: data[:colour],
|
41
|
-
opacity: data[:opacity]
|
42
|
-
).build
|
43
|
-
else
|
44
|
-
nil
|
45
|
-
end
|
46
|
-
end
|
47
|
-
|
48
|
-
def element_shapes
|
49
|
-
elements.each_with_index.map do |row, row_num|
|
50
|
-
row.each_with_index.map do |col, col_num|
|
51
|
-
build_element(row_num, col_num, col)
|
52
|
-
end
|
53
|
-
end.flatten.compact
|
7
|
+
class TopGrid < Grid
|
8
|
+
def element_factory_class
|
9
|
+
TopElementFactory
|
54
10
|
end
|
55
11
|
end
|
56
12
|
end
|
data/lib/grid_generator.rb
CHANGED
@@ -13,6 +13,8 @@ require_relative 'grid_generator/skewb/top_skewb_grid'
|
|
13
13
|
require_relative 'grid_generator/skewb/left_skewb_grid'
|
14
14
|
require_relative 'grid_generator/skewb/right_skewb_grid'
|
15
15
|
require_relative 'grid_generator/curvy_copter/top_grid'
|
16
|
+
require_relative 'grid_generator/curvy_copter/left_grid'
|
17
|
+
require_relative 'grid_generator/curvy_copter/right_grid'
|
16
18
|
require_relative 'grid_generator/square_one/face'
|
17
19
|
require_relative 'grid_generator/pyraminx/face'
|
18
20
|
require_relative 'grid_generator/megaminx/face_projection'
|
@@ -61,6 +63,14 @@ module GridGenerator
|
|
61
63
|
CurvyCopter::TopGrid.new(**args)
|
62
64
|
end
|
63
65
|
|
66
|
+
def self.curvy_copter_left_grid(args)
|
67
|
+
CurvyCopter::LeftGrid.new(**args)
|
68
|
+
end
|
69
|
+
|
70
|
+
def self.curvy_copter_right_grid(args)
|
71
|
+
CurvyCopter::RightGrid.new(**args)
|
72
|
+
end
|
73
|
+
|
64
74
|
def self.square_one_face(args)
|
65
75
|
SquareOne::Face.new(**args)
|
66
76
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grid_generator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mark Humphreys
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-05-
|
11
|
+
date: 2023-05-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: matrix
|
@@ -52,6 +52,12 @@ files:
|
|
52
52
|
- lib/grid_generator/cubic/square_factory.rb
|
53
53
|
- lib/grid_generator/cubic/top_grid.rb
|
54
54
|
- lib/grid_generator/cubic/units_factory.rb
|
55
|
+
- lib/grid_generator/curvy_copter/element_factory.rb
|
56
|
+
- lib/grid_generator/curvy_copter/grid.rb
|
57
|
+
- lib/grid_generator/curvy_copter/left_element_factory.rb
|
58
|
+
- lib/grid_generator/curvy_copter/left_grid.rb
|
59
|
+
- lib/grid_generator/curvy_copter/right_element_factory.rb
|
60
|
+
- lib/grid_generator/curvy_copter/right_grid.rb
|
55
61
|
- lib/grid_generator/curvy_copter/top_element_factory.rb
|
56
62
|
- lib/grid_generator/curvy_copter/top_grid.rb
|
57
63
|
- lib/grid_generator/face_parser.rb
|