grid_generator 0.6.0 → 0.6.2

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
2
  SHA256:
3
- metadata.gz: 32332f081145a2b5a5ba1299d8a93c89fbc6e6be3b23fe4301f32b9a1f9e4a2f
4
- data.tar.gz: '08e65a6f0281a264029f16f92933bdce480dd777be4f85ac901789f5599bd47b'
3
+ metadata.gz: 44b252e6097a3f77f1c140f3724ac68c359bf9741f0c95bcbac00f23bd9ad5a4
4
+ data.tar.gz: 5e0ff71b15401f304b59759475eeb74586f68c2b3c6738a691fff234a702667c
5
5
  SHA512:
6
- metadata.gz: fc2ee0d6b12a72db1801797faecdc1ecca069a8dec56d47b0220081f1e6dae5f38869b378ed25aead56aba4587ab62361545196e78cdc5aee7478718205d782e
7
- data.tar.gz: d9d2f71871d739b751229e53af86320a8122d444707bf8f298a6529d4f3346fbce6ffbb84a0e8e0fe6f8263a9cffefae7e642f119909c87887e2d783da6c6b8a
6
+ metadata.gz: 33517c906d96ebfebdba3a2cc07d6480a7c3c1e4034c8a18dc104e37329d78a837a386748b32182d67be6d95c433a303d3c48fb7706f333ff5ae09750017c413
7
+ data.tar.gz: ca6a3c6583d521923c29d9bc1c09a36425689e43f5bf498edcb0d67661e6fbd34278950fff79a2ec9c45e9b6a3d7b62ffcb4890bbf99b5acffbf93030a4486f1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- grid_generator (0.6.0)
4
+ grid_generator (0.6.2)
5
5
  matrix (~> 0.4.2)
6
6
 
7
7
  GEM
@@ -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_right_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,13 @@
1
+ require_relative '../face_parser'
2
+ require_relative './grid'
3
+ require_relative './left_element_factory'
4
+
5
+ module GridGenerator
6
+ module RexCube
7
+ class LeftGrid < Grid
8
+ def element_factory_class
9
+ LeftElementFactory
10
+ end
11
+ end
12
+ end
13
+ 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,13 @@
1
+ require_relative '../face_parser'
2
+ require_relative './grid'
3
+ require_relative './right_element_factory'
4
+
5
+ module GridGenerator
6
+ module RexCube
7
+ class RightGrid < Grid
8
+ def element_factory_class
9
+ RightElementFactory
10
+ end
11
+ end
12
+ end
13
+ 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
@@ -0,0 +1,13 @@
1
+ require_relative '../face_parser'
2
+ require_relative './grid'
3
+ require_relative './top_element_factory'
4
+
5
+ module GridGenerator
6
+ module RexCube
7
+ class TopGrid < Grid
8
+ def element_factory_class
9
+ TopElementFactory
10
+ end
11
+ end
12
+ end
13
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GridGenerator
4
- VERSION = "0.6.0"
4
+ VERSION = "0.6.2"
5
5
  end
@@ -18,6 +18,9 @@ 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'
@@ -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.6.0
4
+ version: 0.6.2
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-03 00:00:00.000000000 Z
11
+ date: 2023-06-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: matrix
@@ -74,6 +74,14 @@ 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