grid_generator 0.6.4 → 0.6.5

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: a29398c0e91b1e9beeb273474a302b0a46c6b3a338963e13bf5ce8be3b377bbb
4
- data.tar.gz: 30c255945acef54ae524f50dce370e070680649cde58fc258be3dadfd300452f
3
+ metadata.gz: e80676df40d0a3d3cbcad7f0e2ba781c42d785477ae2ddafd01dd21e1234b618
4
+ data.tar.gz: 62cd99fd67ef93364aa291030ea276be8f2f470c11659632133a2c4cadea9f6c
5
5
  SHA512:
6
- metadata.gz: 6ae0e7f3689679890b57748d64ee0bc0a4df8bba9930b52474d90426f62eb56334438910497576607a9cd362b48ff53f1ea3cdae499803eca60e90667e4c2092
7
- data.tar.gz: 86caa7e2541c0a56d29b476d598ee2442c24643761afb6b569da53a3dc28b339e42dd6afe0ae8f3613a4cda0434cb60c9271fdf68dca14febcec3c14c19f2e29
6
+ metadata.gz: e63b016af21e129f48f4e1c6cfe87ea273fff9092287b3536f3095f74577ab25eb504dedb2a29862781fbcbb660f51aba21915f5de35c0a26bc46308789df4ce
7
+ data.tar.gz: 0bd81b8100fb918b88ed2b49949e9a810ca13c256c0636dbfb395b16f52207cd3b62c63f161cf945adcbac69d5f8050247c9b9e46fc6ff9b75549c6df322c709
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- grid_generator (0.6.4)
4
+ grid_generator (0.6.5)
5
5
  matrix (~> 0.4.2)
6
6
 
7
7
  GEM
@@ -0,0 +1,93 @@
1
+ require 'matrix'
2
+ require_relative '../base_element'
3
+
4
+ module GridGenerator
5
+ module RediCube
6
+ class ElementFactory
7
+ def initialize(grid_x:, grid_y:, row_num:, col_num:, units:, colour:, opacity:)
8
+ @grid_x, @grid_y = grid_x, grid_y
9
+ @row_num, @col_num = row_num, col_num
10
+ @units = units
11
+ @colour, @opacity = colour, opacity
12
+ end
13
+
14
+ attr_reader :grid_x, :grid_y, :row_num, :col_num, :units, :colour, :opacity
15
+
16
+ def offset
17
+ @offset ||= Matrix.column_vector([grid_x, grid_y])
18
+ end
19
+
20
+ def points
21
+ _points = case [row_num, col_num]
22
+ when [0, 0] # top left corner
23
+ [
24
+ anchors[:top_left_corner_top_left],
25
+ anchors[:top_left_corner_top_right],
26
+ anchors[:top_left_corner_bottom_right],
27
+ anchors[:top_left_corner_bottom_left]
28
+ ]
29
+ when [0, 1] # top edge
30
+ [
31
+ anchors[:top_left_corner_top_right],
32
+ anchors[:top_right_corner_top_left],
33
+ anchors[:top_right_corner_bottom_left],
34
+ anchors[:center],
35
+ anchors[:top_left_corner_bottom_right]
36
+ ]
37
+ when [0, 2] # top right corner
38
+ [
39
+ anchors[:top_right_corner_top_left],
40
+ anchors[:top_right_corner_top_right],
41
+ anchors[:top_right_corner_bottom_right],
42
+ anchors[:top_right_corner_bottom_left],
43
+ ]
44
+ when [1, 0] # left edge
45
+ [
46
+ anchors[:top_left_corner_bottom_left],
47
+ anchors[:top_left_corner_bottom_right],
48
+ anchors[:center],
49
+ anchors[:bottom_left_corner_top_right],
50
+ anchors[:bottom_left_corner_top_left]
51
+ ]
52
+ when [1, 1] # right edge
53
+ [
54
+ anchors[:top_right_corner_bottom_left],
55
+ anchors[:top_right_corner_bottom_right],
56
+ anchors[:bottom_right_corner_top_right],
57
+ anchors[:bottom_left_corner_top_left],
58
+ anchors[:center]
59
+ ]
60
+ when [2, 0] # bottom left corner
61
+ [
62
+ anchors[:bottom_left_corner_top_left],
63
+ anchors[:bottom_left_corner_top_right],
64
+ anchors[:bottom_left_corner_bottom_right],
65
+ anchors[:bottom_left_corner_bottom_left]
66
+ ]
67
+ when [2, 1] # bottom edge
68
+ [
69
+ anchors[:center],
70
+ anchors[:bottom_right_corner_bottom_left],
71
+ anchors[:bottom_right_corner_bottom_right],
72
+ anchors[:bottom_left_corner_bottom_right],
73
+ anchors[:bottom_left_corner_bottom_left]
74
+ ]
75
+ when [2, 2] # bottom right corner
76
+ [
77
+ anchors[:bottom_right_corner_top_left],
78
+ anchors[:bottom_right_corner_top_right],
79
+ anchors[:bottom_right_corner_bottom_left],
80
+ anchors[:bottom_right_corner_bottom_right]
81
+ ]
82
+ else
83
+ []
84
+ end
85
+ _points.map { |p| p + offset }
86
+ end
87
+
88
+ def build
89
+ GridGenerator::BaseElement.new(points: points, colour: colour, opacity: opacity)
90
+ end
91
+ end
92
+ end
93
+ end
@@ -0,0 +1,56 @@
1
+ require_relative '../face_parser'
2
+
3
+ module GridGenerator
4
+ module RediCube
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,33 @@
1
+ require_relative './element_factory'
2
+
3
+ module GridGenerator
4
+ module RediCube
5
+ class LeftElementFactory < ElementFactory
6
+ def anchors
7
+ @anchors ||= {
8
+ top_left_corner_top_left: Matrix.column_vector([0, 0]),
9
+ top_left_corner_top_right: Matrix.column_vector([units, 0.5*units]),
10
+ top_left_corner_bottom_left: Matrix.column_vector([units, 1*units]),
11
+ top_left_corner_bottom_right: Matrix.column_vector([0, 1.5*units]),
12
+
13
+ top_right_corner_top_left: Matrix.column_vector([2*units, units]),
14
+ top_right_corner_top_right: Matrix.column_vector([3*units, 1.5*units]),
15
+ top_right_corner_bottom_left: Matrix.column_vector([2*units, 2*units]),
16
+ top_right_corner_bottom_right: Matrix.column_vector([3*units, 2.5*units]),
17
+
18
+ bottom_left_corner_top_left: Matrix.column_vector([0, 2*units]),
19
+ bottom_left_corner_top_right: Matrix.column_vector([units, 2.5*units]),
20
+ bottom_left_corner_bottom_left: Matrix.column_vector([0, 3*units]),
21
+ bottom_left_corner_bottom_right: Matrix.column_vector([units, 3.5*units]),
22
+
23
+ bottom_right_corner_top_left: Matrix.column_vector([2*units, 3*units]),
24
+ bottom_right_corner_top_right: Matrix.column_vector([3*units, 3.5*units]),
25
+ bottom_right_corner_bottom_left: Matrix.column_vector([2*units, 4*units]),
26
+ bottom_right_corner_bottom_right: Matrix.column_vector([3*units, 4.5*units]),
27
+
28
+ center: Matrix.column_vector([1.5*units, 2.25*units])
29
+ }
30
+ end
31
+ end
32
+ end
33
+ 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 RediCube
7
+ class LeftGrid < Grid
8
+ def element_factory_class
9
+ LeftElementFactory
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,33 @@
1
+ require_relative './element_factory'
2
+
3
+ module GridGenerator
4
+ module RediCube
5
+ class RightElementFactory < ElementFactory
6
+ def anchors
7
+ @anchors ||= {
8
+ top_left_corner_top_left: Matrix.column_vector([0, 1.5*units]),
9
+ top_left_corner_top_right: Matrix.column_vector([units, units]),
10
+ top_left_corner_bottom_left: Matrix.column_vector([units, 2.5*units ]),
11
+ top_left_corner_bottom_right: Matrix.column_vector([0, 2*units]),
12
+
13
+ top_right_corner_top_left: Matrix.column_vector([2*units, 0.5*units]),
14
+ top_right_corner_top_right: Matrix.column_vector([3*units, 0]),
15
+ top_right_corner_bottom_left: Matrix.column_vector([2*units, 1.5*units]),
16
+ top_right_corner_bottom_right: Matrix.column_vector([3*units, units]),
17
+
18
+ bottom_left_corner_top_left: Matrix.column_vector([0, 3.5*units]),
19
+ bottom_left_corner_top_right: Matrix.column_vector([units, 3*units]),
20
+ bottom_left_corner_bottom_left: Matrix.column_vector([0, 4.5*units]),
21
+ bottom_left_corner_bottom_right: Matrix.column_vector([units, 4*units]),
22
+
23
+ bottom_right_corner_top_left: Matrix.column_vector([2*units, 2.5*units]),
24
+ bottom_right_corner_top_right: Matrix.column_vector([3*units, 2*units]),
25
+ bottom_right_corner_bottom_left: Matrix.column_vector([2*units, 3.5*units]),
26
+ bottom_right_corner_bottom_right: Matrix.column_vector([3*units, 3*units]),
27
+
28
+ center: Matrix.column_vector([1.5*units, 2.25*units])
29
+ }
30
+ end
31
+ end
32
+ end
33
+ 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 RediCube
7
+ class RightGrid < Grid
8
+ def element_factory_class
9
+ RightElementFactory
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,33 @@
1
+ require_relative './element_factory'
2
+
3
+ module GridGenerator
4
+ module RediCube
5
+ class TopElementFactory < ElementFactory
6
+ def anchors
7
+ @anchors ||= {
8
+ top_left_corner_top_left: Matrix.column_vector([3*units, 0]),
9
+ top_left_corner_top_right: Matrix.column_vector([4*units, 0.5*units]),
10
+ top_left_corner_bottom_left: Matrix.column_vector([2*units, 0.5*units]),
11
+ top_left_corner_bottom_right: Matrix.column_vector([3*units, units]),
12
+
13
+ top_right_corner_top_left: Matrix.column_vector([5*units, units]),
14
+ top_right_corner_top_right: Matrix.column_vector([6*units, 1.5*units]),
15
+ top_right_corner_bottom_left: Matrix.column_vector([4*units, 1.5*units]),
16
+ top_right_corner_bottom_right: Matrix.column_vector([5*units, 2*units]),
17
+
18
+ bottom_left_corner_top_left: Matrix.column_vector([units, units]),
19
+ bottom_left_corner_top_right: Matrix.column_vector([2*units, 1.5*units]),
20
+ bottom_left_corner_bottom_left: Matrix.column_vector([0, 1.5*units]),
21
+ bottom_left_corner_bottom_right: Matrix.column_vector([units, 2*units]),
22
+
23
+ bottom_right_corner_top_left: Matrix.column_vector([3*units, 2*units]),
24
+ bottom_right_corner_top_right: Matrix.column_vector([4*units, 2.5*units]),
25
+ bottom_right_corner_bottom_left: Matrix.column_vector([2*units, 2.5*units]),
26
+ bottom_right_corner_bottom_right: Matrix.column_vector([3*units, 3*units]),
27
+
28
+ center: Matrix.column_vector([3*units, 1.5*units])
29
+ }
30
+ end
31
+ end
32
+ end
33
+ 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 RediCube
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.4"
4
+ VERSION = "0.6.5"
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/redi_cube/top_grid'
22
+ require_relative 'grid_generator/redi_cube/left_grid'
23
+ require_relative 'grid_generator/redi_cube/right_grid'
21
24
  require_relative 'grid_generator/rex_cube/top_grid'
22
25
  require_relative 'grid_generator/rex_cube/left_grid'
23
26
  require_relative 'grid_generator/rex_cube/right_grid'
@@ -89,6 +92,18 @@ module GridGenerator
89
92
  DinoCube::RightGrid.new(**args)
90
93
  end
91
94
 
95
+ def self.redi_cube_top_grid(args)
96
+ RediCube::TopGrid.new(**args)
97
+ end
98
+
99
+ def self.redi_cube_left_grid(args)
100
+ RediCube::LeftGrid.new(**args)
101
+ end
102
+
103
+ def self.redi_cube_right_grid(args)
104
+ RediCube::RightGrid.new(**args)
105
+ end
106
+
92
107
  def self.rex_cube_top_grid(args)
93
108
  RexCube::TopGrid.new(**args)
94
109
  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.4
4
+ version: 0.6.5
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-04 00:00:00.000000000 Z
11
+ date: 2023-06-05 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/redi_cube/element_factory.rb
78
+ - lib/grid_generator/redi_cube/grid.rb
79
+ - lib/grid_generator/redi_cube/left_element_factory.rb
80
+ - lib/grid_generator/redi_cube/left_grid.rb
81
+ - lib/grid_generator/redi_cube/right_element_factory.rb
82
+ - lib/grid_generator/redi_cube/right_grid.rb
83
+ - lib/grid_generator/redi_cube/top_element_factory.rb
84
+ - lib/grid_generator/redi_cube/top_grid.rb
77
85
  - lib/grid_generator/rex_cube/element_factory.rb
78
86
  - lib/grid_generator/rex_cube/grid.rb
79
87
  - lib/grid_generator/rex_cube/left_element_factory.rb