-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon_test.go
65 lines (55 loc) · 1.12 KB
/
common_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package decompose
import (
"github.com/TopoSimplify/lnr"
"github.com/TopoSimplify/opts"
"github.com/TopoSimplify/pln"
"github.com/TopoSimplify/state"
"github.com/intdxdt/deque"
"github.com/intdxdt/geom"
"github.com/intdxdt/sset"
)
//hull geom
func hullGeom(coords geom.Coords) geom.Geometry {
var g geom.Geometry
var n = coords.Len()
if n > 2 {
g = geom.NewPolygon(coords)
} else if n == 2 {
g = geom.NewLineString(coords)
} else {
g = coords.Pt(0)
}
return g
}
//Type DP
type dpTest struct {
id int
Hulls *deque.Deque
Pln pln.Polyline
Meta map[string]interface{}
Opts *opts.Opts
ScoreFn lnr.ScoreFn
SimpleSet *sset.SSet
}
func (self *dpTest) Id() int {
return self.id
}
func (self *dpTest) State() *state.State {
var s state.State
return &s
}
func (self *dpTest) Options() *opts.Opts {
return self.Opts
}
func (self *dpTest) NodeQueue() *deque.Deque {
return self.Hulls
}
func (self *dpTest) Simple() []int {
return []int{}
}
func (self *dpTest) Coordinates() geom.Coords {
return self.Pln.Coordinates
}
func (self *dpTest) Polyline() pln.Polyline {
return self.Pln
}