AMS 345/CSE 355 Computational Geometry

Slides:



Advertisements
Similar presentations
POLYGONS 10/17/2007 NAMING POLYGONS
Advertisements

Polygons and Their Angles
Geometry 6.1 Angles of Polygons
Angles of Polygons.
Chapter 6 Polygons. A polygon is a closed plane figure formed by three or more segments that intersect only at their endpoints. PolygonsNot Polygons.
Geometry Chapter Polygons. Convex Polygon – a polygon with a line containing a side with a point in the interior of the polygon.
THE WORLD OF POLYGONS LESSON 4.
Objectives Classify polygons based on their sides and angles.
Geometry Section 6.1 Polygons 4/15/2017.
Angles of Polygons.
Honors Geometry Sections 3.1 & 3.6 Polygons and Their Angle Measures
Lesson 1.6 Classify Polygons. Objective Classify Polygons.
3-5 The Polygon Angle-Sum Theorems
Designed by Dave Meyer. All rights reserved Tutorial 5a.
Basic Definitions in Geometry
Kites and Trapezoids Review Interior Angles in a Polygon The sum of the angles of the interior angles of a convex n-gon is (n-2)180° An angle in a regular.
Warm Up Complete each statement.
Objectives :  Recognize polygons  Name polygons  Recognize convex polygons  Find diagonals of a polygon  Identify special types of quadrilaterals.
Chapter 8.1 Notes: Find Angle Measures in Polygons Goal: You will find interior and exterior angle measures in polygons.
Polygons Polygons. Polygon Any shape where every segment intersects exactly two others at its endpoints.
Geometry. Some more definitions: Geometry Some more definitions: Consecutive vertices:
6-1 Properties and Attributes of Polygons Warm Up Lesson Presentation
1-6 Classify Polygons Warm Up Lesson Presentation Lesson Quiz
Objectives Define polygon, concave / convex polygon, and regular polygon Find the sum of the measures of interior angles of a polygon Find the sum of the.
Chapter 8.1 Notes: Find Angle Measures in Polygons Goal: You will find angle measures in polygons.
Polygons A Polygon is a closed plane figure formed by 3 or more segments Each segment intersects exactly 2 other segments only at their endpoints. No.
Quadrilaterals Chapter 6.
6.1 Polygons.
Warm-Up Draw an example of a(n)…
Vertices, Edges and Faces By Jordan Diamond. Vertices In geometry, a vertices is a special kind of point which describes the corners or intersections.
Section 3-5 Angles of a Polygon. Polygon Means: “many-angled” A polygon is a closed figure formed by a finite number of coplanar segments a.Each side.
CHAPTER 3: PARALLEL LINES AND PLANES Section 3-5: Angles of Polygons.
Warm Up 1.) Name a line that contains C. 2.) Name a ray with endpoint B that contains A. 3.) Name an angle with vertex B that contains C. 4.) Name a segment.
Polygons Advanced Geometry Polygons Lesson 1. Polygon a closed figure Examples NO HOLES NO CURVES SIDES CANNOT OVERLAP all sides are segments.
Geometry Section 1.6 Classifying Polygons. Terms Polygon-closed plane figure with the following properties Formed by 3 or more line segments called sides.
Transversals + Parallel lines Obj: to use the properties of transversals to solve angle problems.
1 Objectives Define polygon, concave / convex polygon, and regular polygon Find the sum of the measures of interior angles of a polygon Find the sum of.
6-1B Exploring Polygons How are polygons classified? How are polygons classified? How do you find the sum of the measures of the interior angles of a convex.
Do Now. Section 8.2 Angles in Polygons Polygon Interior Angles Theorem The sum of the measures of the interior angles of a convex polygon with n sides.
§10.1 Polygons  Definitions:  Polygon  A plane figure that…  Is formed by _________________________ called sides and… ..each side intersects ___________.
CLASSIFYING POLYGONS UNIT 1 LESSON 6. Classifying Polygons In geometry, a figure that lies in a plane is called a plane figure. A polygon is a closed.
Geometry Section 6.1 Polygons. The word polygon means many sides. In simple terms, a polygon is a many-sided closed figure.
Informal Geometry 10.2 Diagonals and Angle Measure.
Geometry Section 11.1 Angle Measures in Polygons
3-5 Angles of a Polygon. A) Terms Polygons – each segment intersects exactly two other segments, one at each endpoint. Are the following figures a polygon?
8.1 Angle measures of a Ploygon. Polygons Polygons are closed figures Made of strait segment Segments only intersect at endpoints forming vertices.
Holt Geometry 6-1 Properties and Attributes of Polygons 6-1 Properties and Attributes of Polygons Holt Geometry Warm Up Warm Up Lesson Presentation Lesson.
POLYGONS. Examples of Polygons: NOT Examples of Polygons: Definition of a Polygon A polygon is a closed figure formed by a finite number of coplanar segments.
Lesson 3-5 Angles of a Polygon (page 101) Essential Question How can you apply parallel lines (planes) to make deductions?
8.1 Find Angle Measures in Polygons Hubarth Geometry.
: Geometry Jeopardy: Review Game. $2 $5 $10 $20 $1 $2 $5 $10 $20 $1 $2 $5 $10 $20 $1 $2 $5 $10 $20 $1 $2 $5 $10 $20 $1 Geometric Figures Polygons Lines,
POLYGONS 10/17/2007 NAMING POLYGONS
6-1 Properties and Attributes of Polygons Warm Up Lesson Presentation
Objectives Classify polygons based on their sides and angles.
Do Now  .
Section 3-5 Angles of a Polygon.
8.1 Angles of Polygons What you’ll learn:
Bellwork How do you find a circumcenter of a triangle using tool?
3-5 Angles of a Polygon.
6.1 Vocabulary Side of a polygon Vertex of a polygon Diagonal
Geometry Jeopardy: Review Game.
GEOMETRY.
8.1 Find Angle Measures in Polygons
Introduction to Polygons
6.1 The Polygon Angle-Sum Theorems
Lesson 3-4 Polygons.
Polygons Section 3-1.
Section 2.5 Convex Polygons
Objectives Classify polygons based on their sides and angles.
Chapter 6 Quadrilaterals.
Presentation transcript:

AMS 345/CSE 355 Computational Geometry Lecture: Geometric Primitives Joe Mitchell Code/figures from [O’Rourke]: Computational Geometry in C: Chap 1

Cross Products c b a

Cross Products Example: ab × ac = [2,1] × [2,2] = (2*2-2*1) = 1 ab × ad = [2,1] × [0,-1] = (2*(-1)-0*1) = -2 c=(2,2) b=(2,1) a d=(0,-1)

Determinant Form

Area of Convex Polygon

Area of Simple Polygon

Point Type

Vertex Structure

NEW and ADD

b c a

Proper Segment Intersection Fact: ab and cd properly intersect if and only if (1) points a and b are on opposite sides of line cd, AND (2) c and d are on opposite sides of line ab

Improper Segment Intersection

Between b c a b c a

Segment Intersection

Diagonalie Test if segment ab, joining vertices a and b, forms a “diagonalie” = an interior or exterior diagonal for P. Check: does the segment ab avoid intersecting all edges of P, except those that share endpoints with ab? a a b a b b

InCone

InCone b a0 a1 a b a a1 a0

Diagonal

Additional Primitives ConvexVertex(a,P) – returns T iff a is a convex vertex of P RaySegIntersectProp RayRayIntersectProp RaySegIntersect, RayRayIntersect SegSegShareEndptOnly SegSegT-Intersect PointInTriangle SegInPolygon Etc, etc

From Practice Midterm

From Practice Midterm