mirror of
https://github.com/jhasse/poly2tri.git
synced 2024-11-19 12:06:09 +01:00
neighbor updates
This commit is contained in:
parent
7d87363ba7
commit
99f6af554c
@ -141,7 +141,7 @@ class CDT(val points: List[Point], val segments: List[Segment], iTriangle: Trian
|
|||||||
}
|
}
|
||||||
// Process edge events
|
// Process edge events
|
||||||
point.edges.foreach(e => edgeEvent(e, triangle))
|
point.edges.foreach(e => edgeEvent(e, triangle))
|
||||||
//if(i == 7) {cleanTri = triangle; mesh.debug += cleanTri}
|
if(i == 7) {cleanTri = triangle; mesh.debug += cleanTri}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -176,8 +176,8 @@ class CDT(val points: List[Point], val segments: List[Segment], iTriangle: Trian
|
|||||||
// TODO: check to see of legalization is necessary here
|
// TODO: check to see of legalization is necessary here
|
||||||
|
|
||||||
// Update neighbors
|
// Update neighbors
|
||||||
node.triangle.updateNeighbors(rTriangle.points(1), rTriangle.points(2), rTriangle, mesh.debug)
|
node.triangle.markNeighbor(rTriangle.points(1), rTriangle.points(2), rTriangle, mesh.debug)
|
||||||
node.prev.triangle.updateNeighbors(lTriangle.points(1), lTriangle.points(2), lTriangle, mesh.debug)
|
node.prev.triangle.markNeighbor(lTriangle.points(1), lTriangle.points(2), lTriangle, mesh.debug)
|
||||||
|
|
||||||
// Update advancing front
|
// Update advancing front
|
||||||
val newNode = aFront.insert(point, rTriangle, node)
|
val newNode = aFront.insert(point, rTriangle, node)
|
||||||
@ -209,7 +209,7 @@ class CDT(val points: List[Point], val segments: List[Segment], iTriangle: Trian
|
|||||||
if(legal) {
|
if(legal) {
|
||||||
newNode = aFront.insert(point, triangle, node)
|
newNode = aFront.insert(point, triangle, node)
|
||||||
// Update neighbors
|
// Update neighbors
|
||||||
nTri.updateNeighbors(cwPoint, ccwPoint, triangle, mesh.debug)
|
nTri.markNeighbor(cwPoint, ccwPoint, triangle, mesh.debug)
|
||||||
} else {
|
} else {
|
||||||
newNode = new Node(triangle.points(1), triangle)
|
newNode = new Node(triangle.points(1), triangle)
|
||||||
val rNode = node.next
|
val rNode = node.next
|
||||||
@ -300,18 +300,20 @@ class CDT(val points: List[Point], val segments: List[Segment], iTriangle: Trian
|
|||||||
val point2 = if(ahead) edge.p else edge.q
|
val point2 = if(ahead) edge.p else edge.q
|
||||||
|
|
||||||
val points = new ArrayBuffer[Point]
|
val points = new ArrayBuffer[Point]
|
||||||
|
val triangles = new ArrayBuffer[Triangle]
|
||||||
|
|
||||||
var node = aFront.locate(point1)
|
var node = aFront.locate(point1)
|
||||||
val first = node
|
val first = node
|
||||||
|
triangles += first.triangle
|
||||||
|
|
||||||
node = node.next
|
node = node.next
|
||||||
|
|
||||||
while(node.point != point2) {
|
while(node.point != point2) {
|
||||||
points += node.point
|
points += node.point
|
||||||
|
triangles += node.triangle
|
||||||
node = node.next
|
node = node.next
|
||||||
}
|
}
|
||||||
|
|
||||||
//assert(points.size == 1, "not implemented yet, points = " + points.size)
|
|
||||||
|
|
||||||
val endPoints = if(ahead) List(point2, point1) else List(point1, point2)
|
val endPoints = if(ahead) List(point2, point1) else List(point1, point2)
|
||||||
|
|
||||||
// STEP 3: Triangulate empty areas.
|
// STEP 3: Triangulate empty areas.
|
||||||
@ -322,22 +324,18 @@ class CDT(val points: List[Point], val segments: List[Segment], iTriangle: Trian
|
|||||||
aFront -= (first, node.prev, T.first)
|
aFront -= (first, node.prev, T.first)
|
||||||
|
|
||||||
// Update neigbor pointers
|
// Update neigbor pointers
|
||||||
if(ahead) {
|
// Inneficient, but it works well...
|
||||||
T.first.neighbors(2) = node.prev.triangle;
|
for(i <- triangles)
|
||||||
T.first.neighbors(0) = first.triangle
|
for(j <- T)
|
||||||
node.prev.triangle.updateNeighbors(T.first.points(0), T.first.points(1), T.first, mesh.debug)
|
i.markNeighbor(j)
|
||||||
first.triangle.updateNeighbors(T.first.points(1), T.first.points(2), T.first, mesh.debug)
|
|
||||||
} else {
|
for(i <- 0 until T.size)
|
||||||
T.first.neighbors(2) = first.triangle;
|
for(j <- i+1 until T.size)
|
||||||
T.first.neighbors(0) = node.prev.triangle
|
T(i).markNeighbor(T(j))
|
||||||
node.prev.triangle.updateNeighbors(T.first.points(1), T.first.points(2), T.first, mesh.debug)
|
|
||||||
first.triangle.updateNeighbors(T.first.points(0), T.first.points(1), T.first, mesh.debug)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mark constrained edge
|
// Mark constrained edge
|
||||||
T.first mark(edge.p, edge.q)
|
T.first mark(edge.p, edge.q)
|
||||||
|
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
// Mark constrained edge
|
// Mark constrained edge
|
||||||
firstTriangle mark(edge.p, edge.q)
|
firstTriangle mark(edge.p, edge.q)
|
||||||
@ -407,8 +405,8 @@ class CDT(val points: List[Point], val segments: List[Segment], iTriangle: Trian
|
|||||||
val neighbors = Array(node.triangle, null, node.prev.triangle)
|
val neighbors = Array(node.triangle, null, node.prev.triangle)
|
||||||
val triangle = new Triangle(points, neighbors)
|
val triangle = new Triangle(points, neighbors)
|
||||||
// Update neighbor pointers
|
// Update neighbor pointers
|
||||||
node.prev.triangle.updateNeighbors(triangle.points(0), triangle.points(1), triangle, mesh.debug)
|
node.prev.triangle.markNeighbor(triangle.points(0), triangle.points(1), triangle, mesh.debug)
|
||||||
node.triangle.updateNeighbors(triangle.points(1), triangle.points(2), triangle, mesh.debug)
|
node.triangle.markNeighbor(triangle.points(1), triangle.points(2), triangle, mesh.debug)
|
||||||
mesh.map += triangle
|
mesh.map += triangle
|
||||||
aFront -= (node.prev, node, triangle)
|
aFront -= (node.prev, node, triangle)
|
||||||
}
|
}
|
||||||
@ -461,7 +459,7 @@ class CDT(val points: List[Point], val segments: List[Segment], iTriangle: Trian
|
|||||||
val ccwNeighbor = t2.neighborCCW(oPoint)
|
val ccwNeighbor = t2.neighborCCW(oPoint)
|
||||||
|
|
||||||
if(ccwNeighbor != null) {
|
if(ccwNeighbor != null) {
|
||||||
ccwNeighbor.updateNeighbors(oPoint, t1.points(2), t1, mesh.debug)
|
ccwNeighbor.markNeighbor(oPoint, t1.points(2), t1, mesh.debug)
|
||||||
t1.neighbors(1) = ccwNeighbor
|
t1.neighbors(1) = ccwNeighbor
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -47,7 +47,8 @@ class Triangle(val points: Array[Point], val neighbors: Array[Triangle]) {
|
|||||||
var clean = false
|
var clean = false
|
||||||
|
|
||||||
// Update neighbor pointers
|
// Update neighbor pointers
|
||||||
def updateNeighbors(ccwPoint: Point, cwPoint: Point, triangle: Triangle, debug: HashSet[Triangle]) {
|
// Debug version
|
||||||
|
def markNeighbor(ccwPoint: Point, cwPoint: Point, triangle: Triangle, debug: HashSet[Triangle]) {
|
||||||
if((ccwPoint == points(2) && cwPoint == points(1)) || (ccwPoint == points(1) && cwPoint == points(2)))
|
if((ccwPoint == points(2) && cwPoint == points(1)) || (ccwPoint == points(1) && cwPoint == points(2)))
|
||||||
neighbors(0) = triangle
|
neighbors(0) = triangle
|
||||||
else if((ccwPoint == points(0) && cwPoint == points(2)) || (ccwPoint == points(2) && cwPoint == points(0)))
|
else if((ccwPoint == points(0) && cwPoint == points(2)) || (ccwPoint == points(2) && cwPoint == points(0)))
|
||||||
@ -56,7 +57,33 @@ class Triangle(val points: Array[Point], val neighbors: Array[Triangle]) {
|
|||||||
neighbors(2) = triangle
|
neighbors(2) = triangle
|
||||||
else {
|
else {
|
||||||
debug += triangle
|
debug += triangle
|
||||||
//throw new Exception("Neighbor pointer error, please report!")
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Update neighbor pointers
|
||||||
|
def markNeighbor(ccwPoint: Point, cwPoint: Point, triangle: Triangle) {
|
||||||
|
if((ccwPoint == points(2) && cwPoint == points(1)) || (ccwPoint == points(1) && cwPoint == points(2)))
|
||||||
|
neighbors(0) = triangle
|
||||||
|
else if((ccwPoint == points(0) && cwPoint == points(2)) || (ccwPoint == points(2) && cwPoint == points(0)))
|
||||||
|
neighbors(1) = triangle
|
||||||
|
else if((ccwPoint == points(0) && cwPoint == points(1)) || (ccwPoint == points(1) && cwPoint == points(0)))
|
||||||
|
neighbors(2) = triangle
|
||||||
|
else {
|
||||||
|
throw new Exception("Neighbor pointer error, please report!")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Exhaustive search to update neighbor pointers */
|
||||||
|
def markNeighbor(t: Triangle) {
|
||||||
|
if (t.contains(points(1), points(2))) {
|
||||||
|
neighbors(0) = t
|
||||||
|
t.markNeighbor(points(1), points(2), this)
|
||||||
|
} else if(t.contains(points(0), points(2))) {
|
||||||
|
neighbors(1) = t
|
||||||
|
t.markNeighbor(points(0), points(2), this)
|
||||||
|
} else if (t.contains(points(0), points(1))) {
|
||||||
|
neighbors(2) = t
|
||||||
|
t.markNeighbor(points(0), points(1), this)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -71,6 +98,7 @@ class Triangle(val points: Array[Point], val neighbors: Array[Triangle]) {
|
|||||||
|
|
||||||
def contains(p: Point): Boolean = (p == points(0) || p == points(1) || p == points(2))
|
def contains(p: Point): Boolean = (p == points(0) || p == points(1) || p == points(2))
|
||||||
def contains(e: Segment): Boolean = (contains(e.p) && contains(e.q))
|
def contains(e: Segment): Boolean = (contains(e.p) && contains(e.q))
|
||||||
|
def contains(p: Point, q: Point): Boolean = (contains(p) && contains(q))
|
||||||
|
|
||||||
// Fast point in triangle test
|
// Fast point in triangle test
|
||||||
def pointIn(point: Point): Boolean = {
|
def pointIn(point: Point): Boolean = {
|
||||||
|
Loading…
Reference in New Issue
Block a user