grid_generator 0.6.6 → 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: 00ee80e3b716612dfa5dc8fea3f9a580e1251533b5e4ed1530b6da362b5aa962
4
- data.tar.gz: bc5566ea1a92668bf692631ed1d2f44b1cfca54eca63cb69ceb02abd646b5871
3
+ metadata.gz: 88fddc8d98eb343cea0b1933093cb94d14f0014d96e6cf4c87d4422cb5cc8d99
4
+ data.tar.gz: 36f408f65577006e467a3186b316de71c20256e0683e0665c1670c72963575b3
5
5
  SHA512:
6
- metadata.gz: '0839d1ea3a92a3fab25a1b5f3fe9a2122a1b38c735fd33573db5659c3cd1757c8c36e5c7afb7d5379ebabd1324a725b7c554263d17f720ceb5e42381a32ec75f'
7
- data.tar.gz: 2bb42ad04b47b0a6ab0cac50cf21eb10009d3216c6dbbcf18c70dc6e5309059cdde27afe10a57f9c618ddf0db8313c8cda15a4db99a2064df5822b87ca732b04
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.6)
4
+ grid_generator (0.6.7)
5
5
  matrix (~> 0.4.2)
6
6
 
7
7
  GEM
@@ -70,7 +70,7 @@ module GridGenerator
70
70
  anchors[:bottom_right_corner_top_left],
71
71
  anchors[:bottom_right_corner_bottom_left],
72
72
  anchors[:bottom_left_corner_bottom_right],
73
- anchors[:bottom_left_corner_top_left]
73
+ anchors[:bottom_left_corner_top_right]
74
74
  ]
75
75
  when [2, 2] # bottom right corner
76
76
  [
@@ -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.6"
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.6
4
+ version: 0.6.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Humphreys