grid_generator 0.5.3 → 0.6.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/rex_cube/element_factory.rb +120 -0
- data/lib/grid_generator/rex_cube/grid.rb +56 -0
- data/lib/grid_generator/rex_cube/left_element_factory.rb +21 -0
- data/lib/grid_generator/rex_cube/left_grid.rb +13 -0
- data/lib/grid_generator/rex_cube/right_element_factory.rb +21 -0
- data/lib/grid_generator/rex_cube/right_grid.rb +13 -0
- data/lib/grid_generator/rex_cube/top_element_factory.rb +21 -0
- data/lib/grid_generator/rex_cube/top_grid.rb +13 -0
- data/lib/grid_generator/skewb/{left_skewb_grid.rb → left_grid.rb} +1 -1
- data/lib/grid_generator/skewb/{right_skewb_grid.rb → right_grid.rb} +1 -1
- data/lib/grid_generator/skewb/{top_skewb_grid.rb → top_grid.rb} +1 -1
- data/lib/grid_generator/version.rb +1 -1
- data/lib/grid_generator.rb +24 -9
- metadata +13 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4944667761bfba0b07a3b0006f4e701f2da552fa4c0417c6fd4006dc9b86168d
|
4
|
+
data.tar.gz: d846a3acfe6ad43a0820c354f2f987d26b2039c28596d14d117bf8d6138db9c3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ab4cf6858257bde00b2602d002f73e302c0ce45adf9500c3de79abf49738081b25c6fc640d38616533e5552f28c76fc139228afff58591f8406a1b5a026a2bd
|
7
|
+
data.tar.gz: 18653cac4a61a0ac31c4c2a04469eb5622d1a967af0154f79728fba30be0ae35228fd30aea0be5eb6bfb9bd69696eae9c0299a50d1346bd5154d6618af0134cd
|
data/Gemfile.lock
CHANGED
@@ -0,0 +1,120 @@
|
|
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 RexCube
|
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 Edge
|
32
|
+
[
|
33
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:top_left_corner]]),
|
34
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:top_right_corner]]),
|
35
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:center_top]]),
|
36
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:top_left_corner]]),
|
37
|
+
GridGenerator::Svg::CloseCommand.new
|
38
|
+
]
|
39
|
+
when [1, 0] # Top Left Petal
|
40
|
+
[
|
41
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:top_left_corner]]),
|
42
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:center_top]]),
|
43
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:center_left]]),
|
44
|
+
GridGenerator::Svg::CloseCommand.new
|
45
|
+
]
|
46
|
+
when [1, 1] # Top Right Petal
|
47
|
+
[
|
48
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:top_right_corner]]),
|
49
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:center_right]]),
|
50
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:center_top]]),
|
51
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:top_right_corner]]),
|
52
|
+
GridGenerator::Svg::CloseCommand.new
|
53
|
+
]
|
54
|
+
when [2, 0] # Left Edge
|
55
|
+
[
|
56
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:top_left_corner]]),
|
57
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:center_left]]),
|
58
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:bottom_left_corner]]),
|
59
|
+
GridGenerator::Svg::CloseCommand.new
|
60
|
+
]
|
61
|
+
when [2, 1] # Center
|
62
|
+
[
|
63
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:center_top]]),
|
64
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:center_right]]),
|
65
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:center_bottom]]),
|
66
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:center_left]]),
|
67
|
+
GridGenerator::Svg::CloseCommand.new
|
68
|
+
]
|
69
|
+
when [2, 2] # Right Edge
|
70
|
+
[
|
71
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:top_right_corner]]),
|
72
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:bottom_left_corner]]),
|
73
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:center_right]]),
|
74
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:top_right_corner]]),
|
75
|
+
GridGenerator::Svg::CloseCommand.new
|
76
|
+
]
|
77
|
+
when [3, 0] # Bottom Left Petal
|
78
|
+
[
|
79
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:center_left]]),
|
80
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:center_bottom]]),
|
81
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:bottom_left_corner]]),
|
82
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:center_left]]),
|
83
|
+
GridGenerator::Svg::CloseCommand.new
|
84
|
+
]
|
85
|
+
when [3, 1] # Bottom Right Petal
|
86
|
+
[
|
87
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:center_right]]),
|
88
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:bottom_right_corner]]),
|
89
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:center_bottom]]),
|
90
|
+
GridGenerator::Svg::CloseCommand.new
|
91
|
+
]
|
92
|
+
when [4, 0] # Bottom Edge
|
93
|
+
[
|
94
|
+
GridGenerator::Svg::MoveCommand.new(points: [anchors[:center_bottom]]),
|
95
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:bottom_right_corner]]),
|
96
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:bottom_left_corner]]),
|
97
|
+
GridGenerator::Svg::LineCommand.new(points: [anchors[:center_bottom]]),
|
98
|
+
GridGenerator::Svg::CloseCommand.new
|
99
|
+
]
|
100
|
+
else
|
101
|
+
[]
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
def style
|
106
|
+
GridGenerator::Svg::Style.new(fill: colour, opacity: opacity)
|
107
|
+
end
|
108
|
+
|
109
|
+
def d
|
110
|
+
commands.map do |c|
|
111
|
+
(c + offset)
|
112
|
+
end
|
113
|
+
end
|
114
|
+
|
115
|
+
def build
|
116
|
+
GridGenerator::Svg::Path.new(d: d, style: style)
|
117
|
+
end
|
118
|
+
end
|
119
|
+
end
|
120
|
+
end
|
@@ -0,0 +1,56 @@
|
|
1
|
+
require_relative '../face_parser'
|
2
|
+
|
3
|
+
module GridGenerator
|
4
|
+
module RexCube
|
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,21 @@
|
|
1
|
+
require_relative './element_factory'
|
2
|
+
|
3
|
+
module GridGenerator
|
4
|
+
module RexCube
|
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
|
+
center_top: Matrix.column_vector([1.5*units, 2.25*units]),
|
14
|
+
center_right: Matrix.column_vector([2*units, 2.5*units]),
|
15
|
+
center_bottom: Matrix.column_vector([1.5*units, 3.25*units]),
|
16
|
+
center_left: Matrix.column_vector([1*units, 2*units])
|
17
|
+
}
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require_relative './element_factory'
|
2
|
+
|
3
|
+
module GridGenerator
|
4
|
+
module RexCube
|
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]),
|
10
|
+
bottom_left_corner: Matrix.column_vector([0, 4.5*units]),
|
11
|
+
bottom_right_corner: Matrix.column_vector([3*units, 3*units]),
|
12
|
+
|
13
|
+
center_top: Matrix.column_vector([1.5*units, 2.25*units]),
|
14
|
+
center_right: Matrix.column_vector([2*units, 2*units]),
|
15
|
+
center_bottom: Matrix.column_vector([1.5*units, 3.25*units]),
|
16
|
+
center_left: Matrix.column_vector([1*units, 2.5*units])
|
17
|
+
}
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require_relative './element_factory'
|
2
|
+
|
3
|
+
module GridGenerator
|
4
|
+
module RexCube
|
5
|
+
class TopElementFactory < ElementFactory
|
6
|
+
def anchors
|
7
|
+
@anchors ||= {
|
8
|
+
top_left_corner: Matrix.column_vector([3*units, 0*units]),
|
9
|
+
top_right_corner: Matrix.column_vector([6*units, 1.5*units]),
|
10
|
+
bottom_left_corner: Matrix.column_vector([0, 1.5*units]),
|
11
|
+
bottom_right_corner: Matrix.column_vector([3*units, 3*units]),
|
12
|
+
|
13
|
+
center_top: Matrix.column_vector([3.5*units, 1.25*units]),
|
14
|
+
center_right: Matrix.column_vector([3.5*units, 1.75*units]),
|
15
|
+
center_bottom: Matrix.column_vector([2.5*units, 1.75*units]),
|
16
|
+
center_left: Matrix.column_vector([2.5*units, 1.25*units])
|
17
|
+
}
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
data/lib/grid_generator.rb
CHANGED
@@ -9,15 +9,18 @@ require_relative 'grid_generator/cubic/right_grid'
|
|
9
9
|
require_relative 'grid_generator/cubic/facing_grid'
|
10
10
|
require_relative 'grid_generator/cubic/bordered_grid'
|
11
11
|
require_relative 'grid_generator/cubic/square_factory'
|
12
|
-
require_relative 'grid_generator/skewb/
|
13
|
-
require_relative 'grid_generator/skewb/
|
14
|
-
require_relative 'grid_generator/skewb/
|
12
|
+
require_relative 'grid_generator/skewb/top_grid'
|
13
|
+
require_relative 'grid_generator/skewb/left_grid'
|
14
|
+
require_relative 'grid_generator/skewb/right_grid'
|
15
15
|
require_relative 'grid_generator/curvy_copter/top_grid'
|
16
16
|
require_relative 'grid_generator/curvy_copter/left_grid'
|
17
17
|
require_relative 'grid_generator/curvy_copter/right_grid'
|
18
18
|
require_relative 'grid_generator/dino_cube/top_grid'
|
19
19
|
require_relative 'grid_generator/dino_cube/left_grid'
|
20
20
|
require_relative 'grid_generator/dino_cube/right_grid'
|
21
|
+
require_relative 'grid_generator/rex_cube/top_grid'
|
22
|
+
require_relative 'grid_generator/rex_cube/left_grid'
|
23
|
+
require_relative 'grid_generator/rex_cube/right_grid'
|
21
24
|
require_relative 'grid_generator/square_one/face'
|
22
25
|
require_relative 'grid_generator/pyraminx/face'
|
23
26
|
require_relative 'grid_generator/megaminx/face_projection'
|
@@ -50,16 +53,16 @@ module GridGenerator
|
|
50
53
|
).build
|
51
54
|
end
|
52
55
|
|
53
|
-
def self.
|
54
|
-
Skewb::
|
56
|
+
def self.skewb_top_grid(args)
|
57
|
+
Skewb::TopGrid.new(**args)
|
55
58
|
end
|
56
59
|
|
57
|
-
def self.
|
58
|
-
Skewb::
|
60
|
+
def self.skewb_left_grid(args)
|
61
|
+
Skewb::LeftGrid.new(**args)
|
59
62
|
end
|
60
63
|
|
61
|
-
def self.
|
62
|
-
Skewb::
|
64
|
+
def self.skewb_right_grid(args)
|
65
|
+
Skewb::RightGrid.new(**args)
|
63
66
|
end
|
64
67
|
|
65
68
|
def self.curvy_copter_top_grid(args)
|
@@ -86,6 +89,18 @@ module GridGenerator
|
|
86
89
|
DinoCube::RightGrid.new(**args)
|
87
90
|
end
|
88
91
|
|
92
|
+
def self.rex_cube_top_grid(args)
|
93
|
+
RexCube::TopGrid.new(**args)
|
94
|
+
end
|
95
|
+
|
96
|
+
def self.rex_cube_left_grid(args)
|
97
|
+
RexCube::LeftGrid.new(**args)
|
98
|
+
end
|
99
|
+
|
100
|
+
def self.rex_cube_right_grid(args)
|
101
|
+
RexCube::RightGrid.new(**args)
|
102
|
+
end
|
103
|
+
|
89
104
|
def self.square_one_face(args)
|
90
105
|
SquareOne::Face.new(**args)
|
91
106
|
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
|
+
version: 0.6.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-06-
|
11
|
+
date: 2023-06-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: matrix
|
@@ -74,16 +74,24 @@ files:
|
|
74
74
|
- lib/grid_generator/megaminx/face_projection.rb
|
75
75
|
- lib/grid_generator/pyraminx/face.rb
|
76
76
|
- lib/grid_generator/pyraminx/triangle_factory.rb
|
77
|
+
- lib/grid_generator/rex_cube/element_factory.rb
|
78
|
+
- lib/grid_generator/rex_cube/grid.rb
|
79
|
+
- lib/grid_generator/rex_cube/left_element_factory.rb
|
80
|
+
- lib/grid_generator/rex_cube/left_grid.rb
|
81
|
+
- lib/grid_generator/rex_cube/right_element_factory.rb
|
82
|
+
- lib/grid_generator/rex_cube/right_grid.rb
|
83
|
+
- lib/grid_generator/rex_cube/top_element_factory.rb
|
84
|
+
- lib/grid_generator/rex_cube/top_grid.rb
|
77
85
|
- lib/grid_generator/rotator.rb
|
78
86
|
- lib/grid_generator/scaler.rb
|
79
87
|
- lib/grid_generator/skewb/element_factory.rb
|
80
88
|
- lib/grid_generator/skewb/left_element_factory.rb
|
81
|
-
- lib/grid_generator/skewb/
|
89
|
+
- lib/grid_generator/skewb/left_grid.rb
|
82
90
|
- lib/grid_generator/skewb/right_element_factory.rb
|
83
|
-
- lib/grid_generator/skewb/
|
91
|
+
- lib/grid_generator/skewb/right_grid.rb
|
84
92
|
- lib/grid_generator/skewb/skewb_grid.rb
|
85
93
|
- lib/grid_generator/skewb/top_element_factory.rb
|
86
|
-
- lib/grid_generator/skewb/
|
94
|
+
- lib/grid_generator/skewb/top_grid.rb
|
87
95
|
- lib/grid_generator/square_one/element_factory.rb
|
88
96
|
- lib/grid_generator/square_one/face.rb
|
89
97
|
- lib/grid_generator/square_one_face_parser.rb
|