grid_generator 0.6.5 → 0.6.7

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: e80676df40d0a3d3cbcad7f0e2ba781c42d785477ae2ddafd01dd21e1234b618
4
- data.tar.gz: 62cd99fd67ef93364aa291030ea276be8f2f470c11659632133a2c4cadea9f6c
3
+ metadata.gz: 88fddc8d98eb343cea0b1933093cb94d14f0014d96e6cf4c87d4422cb5cc8d99
4
+ data.tar.gz: 36f408f65577006e467a3186b316de71c20256e0683e0665c1670c72963575b3
5
5
  SHA512:
6
- metadata.gz: e63b016af21e129f48f4e1c6cfe87ea273fff9092287b3536f3095f74577ab25eb504dedb2a29862781fbcbb660f51aba21915f5de35c0a26bc46308789df4ce
7
- data.tar.gz: 0bd81b8100fb918b88ed2b49949e9a810ca13c256c0636dbfb395b16f52207cd3b62c63f161cf945adcbac69d5f8050247c9b9e46fc6ff9b75549c6df322c709
6
+ metadata.gz: cfe5fd808548613e1ea35667f9e2ce9d8e4cc0660841ec803e529a3605c0b6f74d881f8d5567a8df24968e075cf959215db60b8c5b82357230ece560d18071a9
7
+ data.tar.gz: 872dbb30371ada3acd79d661bb6327ac3867fe1603e466c6c697a027c8763fa812e01399b6398029e4c633a003194331bdd17684f90bb10806d71a055d99573f
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- grid_generator (0.6.5)
4
+ grid_generator (0.6.7)
5
5
  matrix (~> 0.4.2)
6
6
 
7
7
  GEM
@@ -54,7 +54,7 @@ module GridGenerator
54
54
  anchors[:top_right_corner_bottom_left],
55
55
  anchors[:top_right_corner_bottom_right],
56
56
  anchors[:bottom_right_corner_top_right],
57
- anchors[:bottom_left_corner_top_left],
57
+ anchors[:bottom_right_corner_top_left],
58
58
  anchors[:center]
59
59
  ]
60
60
  when [2, 0] # bottom left corner
@@ -67,17 +67,17 @@ module GridGenerator
67
67
  when [2, 1] # bottom edge
68
68
  [
69
69
  anchors[:center],
70
+ anchors[:bottom_right_corner_top_left],
70
71
  anchors[:bottom_right_corner_bottom_left],
71
- anchors[:bottom_right_corner_bottom_right],
72
72
  anchors[:bottom_left_corner_bottom_right],
73
- anchors[:bottom_left_corner_bottom_left]
73
+ anchors[:bottom_left_corner_top_right]
74
74
  ]
75
75
  when [2, 2] # bottom right corner
76
76
  [
77
77
  anchors[:bottom_right_corner_top_left],
78
78
  anchors[:bottom_right_corner_top_right],
79
+ anchors[:bottom_right_corner_bottom_right],
79
80
  anchors[:bottom_right_corner_bottom_left],
80
- anchors[:bottom_right_corner_bottom_right]
81
81
  ]
82
82
  else
83
83
  []
@@ -7,8 +7,8 @@ module GridGenerator
7
7
  @anchors ||= {
8
8
  top_left_corner_top_left: Matrix.column_vector([0, 0]),
9
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]),
10
+ top_left_corner_bottom_left: Matrix.column_vector([0, units]),
11
+ top_left_corner_bottom_right: Matrix.column_vector([units, 1.5*units]),
12
12
 
13
13
  top_right_corner_top_left: Matrix.column_vector([2*units, units]),
14
14
  top_right_corner_top_right: Matrix.column_vector([3*units, 1.5*units]),
@@ -7,8 +7,8 @@ module GridGenerator
7
7
  @anchors ||= {
8
8
  top_left_corner_top_left: Matrix.column_vector([0, 1.5*units]),
9
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]),
10
+ top_left_corner_bottom_left: Matrix.column_vector([0, 2.5*units ]),
11
+ top_left_corner_bottom_right: Matrix.column_vector([units, 2*units]),
12
12
 
13
13
  top_right_corner_top_left: Matrix.column_vector([2*units, 0.5*units]),
14
14
  top_right_corner_top_right: Matrix.column_vector([3*units, 0]),
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GridGenerator
4
- VERSION = "0.6.5"
4
+ VERSION = "0.6.7"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grid_generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.5
4
+ version: 0.6.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Humphreys