-
Notifications
You must be signed in to change notification settings - Fork 20
/
pointchain.go
130 lines (113 loc) · 3.55 KB
/
pointchain.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
// Copyright (c) 2011 Mateusz Czapliński (Go port)
// Copyright (c) 2011 Mahir Iqbal (as3 version)
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// based on http://code.google.com/p/as3polyclip/ (MIT licensed)
// and code by Martínez et al: http://wwwdi.ujaen.es/~fmartin/bool_op.html (public domain)
package polyclip
// Represents a connected sequence of segments. The sequence can only be extended by connecting
// new segments that share an endpoint with the chain.
type chain struct {
closed bool
points []Point
}
func newChain(s segment) *chain {
return &chain{
closed: false,
points: []Point{s.start, s.end}}
}
func (c *chain) pushFront(p Point) { c.points = append([]Point{p}, c.points...) }
func (c *chain) pushBack(p Point) { c.points = append(c.points, p) }
// Links a segment to the chain
func (c *chain) linkSegment(s segment) bool {
front := c.points[0]
back := c.points[len(c.points)-1]
switch true {
case s.start.Equals(front):
if s.end.Equals(back) {
c.closed = true
} else {
c.pushFront(s.end)
}
return true
case s.end.Equals(back):
if s.start.Equals(front) {
c.closed = true
} else {
c.pushBack(s.start)
}
return true
case s.end.Equals(front):
if s.start.Equals(back) {
c.closed = true
} else {
c.pushFront(s.start)
}
return true
case s.start.Equals(back):
if s.end.Equals(front) {
c.closed = true
} else {
c.pushBack(s.end)
}
return true
}
return false
}
// Links another chain onto this point chain.
func (c *chain) linkChain(other *chain) bool {
front := c.points[0]
back := c.points[len(c.points)-1]
otherFront := other.points[0]
otherBack := other.points[len(other.points)-1]
if otherFront.Equals(back) {
c.points = append(c.points, other.points[1:]...)
goto success
//c.points = append(c.points[:len(c.points)-1], other.points...)
//return true
}
if otherBack.Equals(front) {
c.points = append(other.points, c.points[1:]...)
goto success
//return true
}
if otherFront.Equals(front) {
// Remove the first element, and join to reversed chain.points
c.points = append(reversed(other.points), c.points[1:]...)
goto success
//return true
}
if otherBack.Equals(back) {
c.points = append(c.points[:len(c.points)-1], reversed(other.points)...)
goto success
//c.points = append(other.points, reversed(c.points)...)
//return true
}
return false
success:
other.points = []Point{}
return true
}
func reversed(list []Point) []Point {
length := len(list)
other := make([]Point, length)
for i := range list {
other[length-i-1] = list[i]
}
return other
}