Constructing Objects in Computer Graphics

Slides:



Advertisements
Similar presentations
Splines I – Curves and Properties
Advertisements

COMP 175 | COMPUTER GRAPHICS Remco Chang1/6103b – Shapes Lecture 03b: Shapes COMP 175: Computer Graphics February 3, 2015.
Lecture Notes #11 Curves and Surfaces II
Constructing Objects in Computer Graphics
Extended Gaussian Images
Informationsteknologi Wednesday, November 7, 2007Computer Graphics - Class 51 Today’s class Geometric objects and transformations.
CPCS 391 Computer Graphics 1 Lecture 5: Polygon Filling
1 Curves and Surfaces. 2 Representation of Curves & Surfaces Polygon Meshes Parametric Cubic Curves Parametric Bi-Cubic Surfaces Quadric Surfaces Specialized.
MIT EECS 6.837, Durand and Cutler Curves & Surfaces.
MIT EECS 6.837, Durand and Cutler Curves & Surfaces.
HCI 530 : Seminar (HCI) Damian Schofield.
Computer Graphics - Class 14
Modelling. Outline  Modelling methods  Editing models – adding detail  Polygonal models  Representing curves  Patched surfaces.
2003 by Jim X. Chen: Introduction to Modeling Jim X. Chen George Mason University.
1 Lecture 13 Modeling Curved Lines and Surfaces. 2 Types of Surfaces Ruled Surfaces B-Splines and Bezier Curves Surfaces of Revolution.
Geometric Modeling Surfaces Mortenson Chapter 6 and Angel Chapter 9.
ENDS 375 Foundations of Visualization Geometric Representation 9/30/04.
1 Representing Curves and Surfaces. 2 Introduction We need smooth curves and surfaces in many applications: –model real world objects –computer-aided.
Splines III – Bézier Curves
Computer Graphics Lecture 13 Curves and Surfaces I.
Modeling and representation 1 – comparative review and polygon mesh models 2.1 Introduction 2.2 Polygonal representation of three-dimensional objects 2.3.
Curve Modeling Bézier Curves
Bresenham’s Algorithm. Line Drawing Reference: Edward Angel’s book: –6 th Ed. Sections 6.8 and 6.9 Assuming: –Clipped (to fall within the window) –2D.
Basics of Rendering Pipeline Based Rendering –Objects in the scene are rendered in a sequence of steps that form the Rendering Pipeline. Ray-Tracing –A.
11/19/02 (c) 2002, University of Wisconsin, CS 559 Last Time Many, many modeling techniques –Polygon meshes –Parametric instancing –Hierarchical modeling.
C O M P U T E R G R A P H I C S Stuff Jian Chen January 15, 2010 Transformations 1/10 Describing Shape By Andries van Dam.
A D V A N C E D C O M P U T E R G R A P H I C S CMSC 635 January 15, 2013 Spline curves 1/23 Curves and Surfaces.
CS 376 Introduction to Computer Graphics 04 / 23 / 2007 Instructor: Michael Eckmann.
V. Space Curves Types of curves Explicit Implicit Parametric.
Vector Computer Graphic. Vector entities Line Circle, Ellipse, arc,… Curves: Spline, Bezier’s curve, … … Areas Solids Models.
Quadratic Surfaces. SPLINE REPRESENTATIONS a spline is a flexible strip used to produce a smooth curve through a designated set of points. We.
CS 376 Introduction to Computer Graphics 04 / 20 / 2007 Instructor: Michael Eckmann.
June D Object Representation Shmuel Wimer Bar Ilan Univ., School of Engineering.
Computer Graphics Basic 3D Geometry CO2409 Computer Graphics Week 5-1.
Parametric Surfaces Define points on the surface in terms of two parameters Simplest case: bilinear interpolation s t s x(s,t)x(s,t) P 0,0 P 1,0 P 1,1.
Vertices, Edges and Faces By Jordan Diamond. Vertices In geometry, a vertices is a special kind of point which describes the corners or intersections.
Geometric Modelling 2 INFO410 & INFO350 S Jack Pinches
04/18/02(c) 2002 University of Wisconsin Last Time Hermite Curves Bezier Curves.
Curves: ch 4 of McConnell General problem with constructing curves: how to create curves that are “smooth” CAD problem Curves could be composed of segments.
In the name of God Computer Graphics Bastanfard. Curve Function(2) Other method is approximate it using a poly-line. Just locate a set of points along.
Greg Humphreys CS445: Intro Graphics University of Virginia, Fall 2003 Parametric Curves & Surfaces Greg Humphreys University of Virginia CS 445, Spring.
Splines I – Curves and Properties based on: Michael Gleicher Curves, chapter 15 in Fundamentals of Computer Graphics, 3 rd ed. (Shirley & Marschner) Slides.
Computing & Information Sciences Kansas State University Lecture 31 of 42CIS 636/736: (Introduction to) Computer Graphics Lecture 32 of 42 Wednesday, 11.
CS 450: Computer Graphics PARAMETRIC SPLINES AND SURFACES
Chapter 8 Engineering Geometry
Splines Sang Il Park Sejong University. Particle Motion A curve in 3-dimensional space World coordinates.
CS 325 Computer Graphics 04 / 30 / 2010 Instructor: Michael Eckmann.
Introduction to Curves
Curves University of British Columbia CPSC 314 Computer Graphics Jan-Apr 2013 Tamara Munzner.
Object Modeling: Curves and Surfaces CEng 477 Introduction to Computer Graphics.
Introduction to Parametric Curve and Surface Modeling.
1 Spherical manifolds for hierarchical surface modeling Cindy Grimm.
CSCI480/582 Lecture 9 Chap.2.2 Cubic Splines – Hermit and Bezier Feb, 11, 2009.
Surfaces and Curves.
Curve & Surface.
Chapter 10-2: Curves.
POLYGON MESH Advance Computer Graphics
Three Dimensional Object Representation
Constructing Objects in Computer Graphics By Andries van Dam©
© University of Wisconsin, CS559 Fall 2004
© University of Wisconsin, CS559 Spring 2004
Digital Media Dr. Jim Rowan ITEC 2110.
Spline Interpolation Class XVII.
UNIT-5 Curves and Surfaces.
Three-Dimensional Object Representation
Introduction to Parametric Curve and Surface Modeling
3-Dimensional Object Representation
Type to enter a caption. Computer Graphics Week 10 Lecture 1.
Spline representation. ❖ A spline is a flexible strip used to produce a smooth curve through a designated set of points. ❖ Mathematically describe such.
Presentation transcript:

Constructing Objects in Computer Graphics Describing Shapes Constructing Objects in Computer Graphics Representing Shape – 9/21/17

2D Object Definition (1/3) Lines and polylines: Polylines: lines drawn between ordered points A closed polyline is a polygon, a simple polygon has no self-intersections Convex and concave polygons: Convex: Line between any two points is inside polygon Concave: At least one line between two points crosses outside polygon not closed, simple polyline simple polygon and closed polyline not simple polygon, closed polyline convex concave Representing Shape – 9/21/17

2D Object Definition (2/3) Special Polygons: Circles: Set of all points equidistant from one point called the center The distance from the center is the radius r The equation for a circle centered at (0, 0) is r2 = x2 + y2 Triangle Square Rectangle (x, y) (0, y) r (0, 0) (x, 0) I am not so sure if we can take out this part, since these are so basic? Representing Shape – 9/21/17

2D Object Definition (3/3) A circle can be approximated by a polygon with many sides. Axis aligned ellipse: a circle scaled in the x and/or y direction 1 2 3 4 5 6 7 8 9 10 Scaled by a factor of 2 in the x direction and not scaled in the y direction. Width changes from 3.5 to 7. Representing Shape – 9/21/17

Representing Shapes Vertex and edge tables: General purpose, minimal overhead, reasonably efficient Each vertex listed once Each edge is an ordered pair of indices to the vertex list Sufficient to draw shape and perform simple operations (transforms, point inside/outside) Edges listed in counterclockwise winding order for consistency with 3D where we need to compute outward-facing normals Vertices (0, 0) 1 (2, 0) 2 (0, 1) 3 (2, 1) 4 (1, 1.5) Edges (0, 1) 1 (1, 3) 2 (3, 4) 3 (4, 2) 4 (2, 0) E3 V4 E2 V2 V3 E4 E1 E0 V0 V1 Representing Shape – 9/21/17

Splines (1/5) - Representing General Curves We can represent any polyline with vertices and edges. What about curves? Don’t want to store curves as raster graphics (aliasing, not scalable, memory intensive). We need a more efficient mathematical representation Store control points in a list, find some way of smoothly interpolating between them Closely related to curve-fitting of data, done by hand with “French curves”, or by computation Piecewise Linear Approximation Not smooth, looks awful without many control points Trigonometric functions Difficult to manipulate and control, computationally expensive Higher order polynomials Relatively cheap to compute, only slightly more difficult to operate on than polylines Representing Shape – 9/21/17

Splines (2/5) – Spline Types and Uses Splines: parametric curves governed by control points or control vectors, third or higher order Used early on in automobile and aircraft industry to achieve smoothness – even small differences can make a big difference in efficiency and look Used for: Representing smooth shapes in 2D as outlines or in 3D using "patches" parameterized with two variables: s and t (see slide 13) Animation paths for "tweening" between keyframes Approximating "expensive" functions (polynomials are cheaper than log, sin, cos, etc.) V0 interpolating spline approximating spline V2 V3 V5 polyline approximation V1 V4 Splines still exist outside of computers. They’re now called flexible curves. Representing Shape – 9/21/17

Splines (3/5) – Hermite Curves Polylines are linear (1st order polynomial) interpolations between points Given points P and Q, line between the two is given by the parametric equation: and t are called weighting functions of P and Q Splines are higher order polynomial interpolations between points Like linear interpolation, but with higher order weighting functions allowing better approximations/smoother curves One representation - Hermite curves (Interpolating spline): Determined by two control points P and Q, an initial tangent vector v and a final tangent vector w. Satisfies: 𝑄: 𝑡=1 𝛾 w v Representing Shape – 9/21/17

Splines (4/5) – Hermite Weighting Explained Polynomial splines have more complex weighting functions than lines Coefficients for P and Q are now 3rd degree polynomials At t = 0 Coefficients of P is 1, all others 0 Derivative of coefficient of v is 1, derivative of all others is 0 At t = 1 Coefficient of Q is 1, all others 0 Derivative of coefficient of w is 1, derivative of all others 0 Can be chained together to make more complex curves Polynomial weighting functions in Hermite curve equation 1 P’s Coefficient Q’s Coefficient v’s coefficient w’s coefficient (0, 0) 1 𝑡 Representing Shape – 9/21/17

Splines (5/5) – Bezier Curves Bezier representation is similar to Hermite 4 points instead of 2 points and 2 vectors Initial position P1, tangent vector is Final position P4, tangent vector is This representation allows a spline to be stored as a list of vertices with some global parameters that describe the smoothness and continuity Bezier splines are widely used (Adobe, Microsoft) for font definition See chapters 23 and 24 for more on splines https://mbostock.github.io/protovis/ex/splines.html https://www.jasondavies.com/animated-bezier/ Representing Shape – 9/21/17 Image credit: http://miphol.com/muse/2008/04/25/Bezier-courbes-anim.gif

“Vertices in Motion” - Object Definition A line is drawn by tracing a point as it moves (1st dimension added) A rectangle is drawn by tracing the vertices of a line as it moves perpendicularly to itself (2nd dimension added) A rectangular prism is drawn by tracing the vertices of a rectangle as it moves perpendicularly to itself (3rd dimension) A circle is drawn by tracing a point swinging at a fixed distance around a center point. Representing Shape – 9/21/17

Building 3D Primitives Made out of 2D and 1D primitives Triangles are commonly used Many triangles used for a single object is a triangular mesh Splines used to describe boundaries of "patches" – these can be "sewn together" to represent curved surfaces Representing Shape – 9/21/17 Image credit (Stanford Bunny): http://mech.fsv.cvut.cz/~dr/papers/Habil/img1007.gif

Triangle Meshes Most common representation of shape in three dimensions All vertices of triangle are guaranteed to lie in one plane (not true for quadrilaterals or other polygons) Uniformity makes it easy to perform mesh operations such as subdivision, simplification, transformation etc. Many different ways to represent triangular meshes See chapters 8 and 25 in book, https://en.wikipedia.org/wiki/Polygon_mesh Mesh transformation and deformation Procedural generation techniques (upcoming labs on simulating terrain) Image credit: http://upload.wikimedia.org/wikipedia/commons/f/fb/Dolphin_triangle_mesh.png Representing Shape – 9/21/17

Triangular Mesh Representation Vertex List v0 0, 0, 0 f0 f1 f12 f15 f7 v1 1, 0, 0 f2 f3 f13 f12 f1 v2 1, 1, 0 f4 f5 f14 f13 f3 v3 0, 1, 0 f6 f7 f15 f14 f5 v4 0, 0, 1 f6 f7 f0 f8 f11 v5 1, 0, 1 f0 f1 f2 f9 f8 v6 1, 1, 1 f2 f3 f4 f10 f9 v7 0, 1, 1 f4 f5 f6 f11 f10 v8 .5, .5, 1 f8 f9 f10 f11 v9 .5, .5, 0 f12 f13 f14 f15 Face List f0 v0 v5 v4 f1 v0 v5 v1 f2 v1 v6 v5 f3 v1 v2 v6 f4 v2 v7 v6 f5 v2 v3 v7 f6 v3 v4 v7 f7 v3 v0 v4 f8 v8 v4 v5 f9 v8 v5 v6 f10 v8 v6 v7 f11 v8 v7 v4 f12 v9 v1 v0 f13 v9 v2 v1 f14 v9 v3 v2 f15 v9 v0 v3 Triangular Mesh Representation Vertex and face tables, analogous to 2D vertex and edge tables Each vertex listed once, triangles listed as ordered triplets of indices into the vertex table Edges inferred from triangles It’s often useful to store associated faces with vertices (i.e. computing normals: vertex normal as average of surrounding face normals) Vertices listed in counter clockwise order in face table. No longer just because of convention. CCW order differentiates front and back of face v4 v7 f11 v8 f10 f8 f9 f0 v6 v5 f2 f1 v0 f3 v1 v2 Diagram licensed under Creative Commons Attribution license. Created by Ben Herila based on http://upload.wikimedia.org/wikipedia/en/thumb/2/2d/Mesh_fv.jpg/500px-Mesh_fv.jpg Representing Shape – 9/21/17

Book Sections Chapter 8 Chapters 22 and 23 for splines (warning: pretty heavy math) Chapter 24 for implicit shapes Chapter 25 for meshes Representing Shape – 9/21/17