bribera-rubyvor 0.0.2 → 0.1.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.
@@ -1,22 +0,0 @@
1
- module RubyVor
2
- module VDDT
3
- class Decomposition
4
- attr_reader :voronoi_diagram_raw, :delaunay_triangulation_raw
5
- def initialize(vd_raw=[], dt_raw=[])
6
- @voronoi_diagram_raw = vd_raw
7
- @delaunay_triangulation_raw = dt_raw
8
- end
9
-
10
- private
11
-
12
- def voronoi_diagram_raw=(v)
13
- @voronoi_diagram_raw = v
14
- end
15
-
16
- def delaunay_triangulation_raw=(v)
17
- @delaunay_triangulation_raw = v
18
- end
19
-
20
- end
21
- end
22
- end