1 / 7

CS 6463: AT Computational Geometry Fall 2006

CS 6463: AT Computational Geometry Fall 2006. Triangulations and Guarding Art Galleries II Carola Wenk. Triangulating a Polygon. There is a simple O( n 2 ) time algorithm based on the proof of Theorem 1.

mrouse
Download Presentation

CS 6463: AT Computational Geometry Fall 2006

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CS 6463: AT Computational GeometryFall 2006 Triangulations andGuarding Art Galleries II Carola Wenk CS 6463: AT Computational Geometry

  2. Triangulating a Polygon • There is a simple O(n2) time algorithm based on the proof of Theorem 1. • There is a very complicated O(n) time algorithm (Chazelle ’91) which is impractical to implement. • We will discuss a practical O(n log n) time algorithm: • Split polygon into monotone polygons (O(n log n) time) • Triangulate each monotone polygon (O(n) time) CS 6463: AT Computational Geometry

  3. Finding a Monotone Subdivision • Monotone subdivision: subdivision of the simple polygon P into monotone pieces • Use plane sweep to add diagonals to P that partition P into monotone pieces • Events at which violation of x-monotonicity occurs: split vertex merge vertex CS 6463: AT Computational Geometry

  4. Helpers (for split vertices) • Helper(e): Rightmost vertically visible vertex below e on the polygonal chain between e and e’, where e’ is the polygon edge below e on the sweep line. • Draw diagonal between v and helper(e), where e is the edge immediately above v. e v split vertex vu = helper(e) u e’ CS 6463: AT Computational Geometry

  5. Sweep Line Algorithm • Events: Vertices of polygon, sorted in increasing order by x-coordinate. (No new events will be added) • Sweep line status: List of edges intersecting sweep line, sorted by y-coordinate. Stored in a balanced binary search tree. • Event processing of vertex v: • Split vertex: • Find edge e lying immediately above v. • Add diagonal connecting v to helper(e). • Add two edges incident to v to sweep line status. • Make v helper of e and of the lower of the two edges e v CS 6463: AT Computational Geometry

  6. Sweep Line Algorithm e • Event processing of vertex v (continued): • Merge vertex: • Delete two edges incident to v. • Find edge e immediately above v and set helper(e)=v. • Start vertex: • Insert v into sweep line status. Set helper of upper edge to v. • End vertex: • Delete both edges from sweep line status. • Upper chain vertex: • Replace left edge with right edge in sweep line status. Make v helper of new edge. • Lower chain vertex: • Replace left edge with right edge in sweep line status.Make v helper of the edge lying above v. v v v v v CS 6463: AT Computational Geometry

  7. Sweep Line Algorithm • Insert diagonals for merge vertices with “reverse” sweep • Each update takes O(log n) time • There are n events → Runtime O(n log n) CS 6463: AT Computational Geometry

More Related