CAP 6736 Geometric Modeling Team Hamilton B-Spline Basis Functions. Presented by Padmavathi Siddi Vigneshkumar Suresh Jorge Medrano

Size: px
Start display at page:

Download "CAP 6736 Geometric Modeling Team Hamilton B-Spline Basis Functions. Presented by Padmavathi Siddi Vigneshkumar Suresh Jorge Medrano"

Transcription

1 CAP 6736 Geometric Modeling Team Hamilton B-Spline Basis Functions Presented by Padmavathi Siddi Vigneshkumar Suresh Jorge Medrano 1

2 Team members contributions Member: Padmavathi Siddi Piecewise Polynomials Piecewise Polynomials in Bezier Form B Splines Examples Member: Vigneshkumar Suresh N 3,2 as Piecewise Polynomial Properties Derivative Formula B Spline Derivatives Member: Jorge Medrano Derivatives with respect to Knot Computational Algorithms Computational Algorithms : all Derivatives 2

3 Father of B-splines A draft-man s spline Isaac J. Schoenberg

4 From Bows to Boats the Mechanical Spline Figure : Evidence from Mesolithic settlements, as well as vernacular structures like the native American wigwam, show one of the simplest forms of shelter, formed by ramming poles into a circular formation, bending them inward, and lashing them together to form a sturdy dome-shaped latticework 4

5 Flexible strip of timber or steel - Spline Figure : Hooked weights, called ducks, accurately secure a spline here, no more than a thin strip of balsa for tracing the hull of a sailing vessel. Source: Edson International (with kind permission). 5

6 L Automobile Inventing the Computational Spline Figure: Citroe n s DS 19 was introduced at the 1955 at the Paris Motor Show. Within the first 15 minutes of the show, 743 orders were received. 6

7 Bezier Cubic Splines form the backbone of Desktop Figure: Bézier s cubic splines form the backbone of desktop publishing standards like PostScript and TrueType. 7

8 Aerospace Finding a New Language Figure: The Mustang P51 s geometry was stored numerically in tables, rather than vulnerable physical blueprints. Source: NASA 8

9 Polynomials Polynomials are incredibly useful mathematical tools as they are simply defined, can be calculated quickly on computer systems and represent a tremendous variety of functions. They can be differentiated and integrated easily, and can be pieced together to form spline curves that can approximate any function to any accuracy desired. Most students are introduced to polynomials at a very early stage in their studies mathematics, and would probably recall them in the form below P(t) = a n t n + a n-1 t n a 1 t + a 0 which represents a polynomial as a linear combination of certain elementary polynomials : { {1,t, t 2,.t n ) }. In general, any polynomial function that has degree less than or equal to n, can be written in this way, and the reasons are simply The set of polynomials of degree less than or equal to n forms a vector space: polynomials can be added together, can be multiplied by a scalar, and all the vector space properties hold. The set of functions { {1,t, t 2,.t n ) } form a basis for this vector space which is any polynomial of degree less than or equal to n can be uniquely written as a linear combinations of these functions. This basis, commonly called the power basis, is only one of an infinite number of bases for the space of polynomials. 9

10 Piecewise Polynomials Shortcomings of Curves Curves consisting of just one polynomial or rational segment are often inadequate. Their shortcomings are: A high degree is required in order to satisfy a large number of constraints; e.g., (n - I)-degree is needed to pass a polynomial Bezier curve through n data points. However, high degree curves are inefficient to process and are numerically unstable; A high degree is required to accurately fit some complex shapes; Single-segment curves (surfaces) are not well-suited to interactive shape design; although Bezier curves can be shaped by means of their control points (and weights), the control is not sufficiently local. The solution is to use curves (surfaces) which are piecewise polynomial, or piecewise rational. 10

11 Piecewise Polynomials The given Figure shows a curve, C(u), consisting of m (= 3) nth degree polynomial segments. C(u) is defined on u E [0,1]. The parameter values are called breakpoints. They map into the endpoints of the three polynomial segments. Each segment is denoted by C i (u), 1< i < m. These segments are constructed so that they can join with some level of continuity. This construction is not needed to be same at every breakpoint. Let C i ( j ) denote the j th derivative of C i. C(u) is said to be C k continuous at the breakpoint U i if C i ( j ) (u i ) = C i+1 j (u i ) for all 0 j k. 11

12 Piecewise Polynomials in Bezier Form The given figure shows with the three segments in cubic Bezier form where P j i denotes the ith control point of the jth segment. If the degree equals three and the breakpoints U = {uo, u1, u2, u3} remain fixed, and if we allow the twelve control points, P j i, to vary arbitrarily, we obtain the vector space, V, consisting of all piecewise cubic polynomial curves on U. V has dimension twelve, and a curve in V may be discontinuous at u1 or u2. Now suppose we specify that P 1 3 = P 2 0 and P 2 3 = P 3 0. This gives rise to V 0, the vector space of all piecewise cubic polynomial curves on U which are at least C 0 continuous everywhere. V 0 has dimension ten, and V 0 V. 12

13 Piecewise Polynomials in Bezier Form V has dimension twelve, and a curve in V may be discontinuous at u1 or u2. Now suppose we specify that P 1 3 = P 2 0 and P 2 3 = P 3 0. This gives rise to V 0, the vector space of all piecewise cubic polynomial curves on U which are at least C 0 continuous everywhere. V 0 has dimension ten, and V 0 V. Imposing C 1 continuity is a bit more involved. Let us consider u = u 1. Assume that P 1 3 = P 2 0. Let be local parameters on the intervals [uo, u1] and [u1 u2], respectively. Then 0 v, w 1. C 1 continuity at u 1 implies 13

14 Piecewise Polynomials in Bezier Form Using property P1. 7, it is easy to derive the general expression for the derivative of a Bezier curve The above equation says that P 1 3 and P 2 3 can be written in terms of P 1 2, P 2 1 and P 2 2, P 3 1, respectively. Hence, V 1, the vector space of all C 1 continuous piecewise cubic polynomial curves on U, has dimension eight, and V 1 V 0 V. We want a curve representation of the form where the P i are control points, and the { fi ( u), i=0,1,,.,n} are piecewise polynomial functions forming a basis for the vector space of all piecewise polynomial functions of the desired degree and continuity (for a fixed breakpoint sequence, U = {u i }, 0 i m). 14

15 Piecewise Polynomials in Bezier Form Property : local support : This means that each f i (u) is nonzero only on a limited number of subintervals, not the entire domain, [u 0, u m ]. Since P i is multiplied by f i (u) moving P i affects curve shape only on the subintervals where f i (u) is nonzero. Finally, given appropriate piecewise polynomial basis functions, we can construct piecewise rational curves Nonrational and rational tensor product surfaces 15

16 Spline In the computer science subfields of computer-aided design and computer graphics, the term spline more frequently refers to a piecewise polynomial parametric curve. Splines are popular curves in these subfields because of the simplicity of their construction, their ease and accuracy of evaluation, and their capacity to approximate complex shapes through curve fitting and interactive curve design. The term spline comes from the flexible spline devices used by shipbuilders and draftsmen to draw smooth shapes. It also is an acronym for "Smooth Polynomial Lines Interpolating Numerical Estimates". 16

17 B-splines Defined B-spline can be defined in many number of ways by divided differences of truncated power functions and by a recurrence formula. We use the recurrence formula, since it is the most useful for computer implementation. Let U= { u 0,u 1,..u m } be a nondecreasing sequence of real numbers, i.e., u i < u i+l, i = 0,..., m -1. The ui are called knots, and U is the knot vector. The ith B-spline basis function of p-degree (order p + 1), denoted by Ni, p ( U ), is defined as 17

18 B-splines Defined N i,o (u) is a step function, equal to zero everywhere except on the half-open interval u E [u i, u i+1 ); For p > 0, N i,p (u) is a linear combination of two (p - 1) degree basis functions Computation of a set of basis functions requires specification of a knot vector - U, and the degree - p The above equation can yield the quotient % (see examples later); we define this quotient to be zero; 18

19 The N i,p (u) are piecewise polynomials, defined on the entire real line; generally only the interval [u o, u m ] is of interest; The half-open interval, [U i, U i+1 ), is called the ith knot span; it can have zero length, since knots need not be distinct The computation of the pth-degree functions generates a truncated triangular table We used the term breakpoint and required u i < u i+1 for all I and now we use the term knot and assume u i u i+1. The breakpoints correspond to the set of distinct knot values, and the knot spans of nonzero length define the individual polynomial segments. Hence, we use the word knot with two different meanings: a distinct value (breakpoint) in the set U, and an element of the set U (there can exist additional knots in U having the same value). 19

20 Example: Degree Zero Fig: nonzero zeroth-degree basis functions U = {0, 0, 0, 1, 2, 3, 4, 4, 5, 5, 5} 20

21 Example: Degree One Fig: nonzero first-degree basis functions U = {0, 0, 0, 1, 2, 3, 4, 4, 5, 5, 5} 21

22 Example: Degree Two Fig: nonzero Second-degree basis functions U = {0, 0, 0, 1, 2, 3, 4, 4, 5, 5, 5} 22

23 N 3,2 AS PIECEWISE POLYNOMIAL where N 3,0 =1, for 1<=u<2 N 4,0 =1, for 2<=u<3 N 5,0 =1, for 3<=u<4 =0, elsewhere =0, elsewhere =0, elsewhere

24 LOCAL SUPPORT N i,p (u)=0 if u is outside the interval[u i,u i+p+1 ). N 1,3 is a combination of N 1,0, N 2,0, N 3,0, N 4,0 and therefore N 1,3 is only non-zero for u that belongs to the range[u 1, u 5 ).

25 LOCAL IMPACT For any given knot span[u j, u j+1 ), there are atmost p+1 of N i,p are non-zero, namely the functions N j-p,p,,n j,p.. ON [u 3,u 4 ) the only non-zeroth degree function is N 3,0. Hence, the only cubic functions that are non-zero on [u 3, u 4 ) are N 0,3,.,N 3,3.

26 PROPERTIES OF B-SPLINES- NON-NEGATIVITY N i,p (u)>=0 for all i,p,u. Proof can be done by induction on p. Proof By Induction on P: Its clearly true for p=0 and assuming that it is true for p-1 and for all p>=0 for arbitrary i and u values. By Local support property, N i,p (u)=0,if u does not belong to [u i, u i+p ).

27 NON-NEGATIVITY (CONT D) But u belonging to the interval[u i,u i+p ) and also assuming the term N i,p-1 (u) is non-negative then the first term will be non-negative. The Same will hold true for the second term and therefore N i,p (u) is non-negative. Therefore for all i,p,u N i,p,u is always non-negative.

28 PARTION OF UNITY PROPERTY For an arbitrary knot span, [u i, u i+1 ), the summation of N j,p (u) for the range j= i-p to i equals to 1 for all u that belongs to [u i,u i+1 )

29 PARTION OF UNITY PROPERTY(CONT D) By changing the summation from i-p to i-p+1, and assuming that N i-p,p-1 (u)=n i+1,p-1 (u)=0,we get BY APPLYING RECURSIVELY WE GET,

30 DIFFERENTIABILITY AND MAXIMUM VALUE PROPERTY According to differentiability property, at a knot N i,p (u) is p-k time differentiable where k is the multiplicity of the knot and all derivatives of N i,p (u) exists in the interior of the knot span. Maximum value property states that N i,p (u) attains exactly one maximum value except in the case of p=0

31 DERIVATIVES OF B-SPLINES The derivative of B-splines basis function is PROOF: By Induction on p. Base case p=1 can be proved and assuming that the above equation is true for p-1,p>1

32 DERIVATIVES OF B-SPLINES(CONT D) By using Product rule on, yields,

33 DERIVATIVES OF B-SPLINES(CONT D) By using the values of N i,p-1 and N i+1,p-1 we get, By using Cox-de Boor formula the expression inside the parenthesis can be replaced by N i,p-1 and N i+1,p-1

34 DERIVATIVES OF B-SPLINES(CONT D)

35 HIGHER ORDER DERIVATIVES OF B-SPLINES K TH order derivative N i,p is obtained by repeated differentiation of the general derivative of B-splines function.

36 DERIVATIVES INTERMS OF B-SPLINE FUNCTION Where,

37 DERIVATIVES INTERMS OF B-SPLINE FUNCTION(CONT D) CONDITIONS WHILE DEFINING DERIVATIVES IN TERMS OF B-SPLINE ARE: 1. k should not exceed the p value 2. Denominators involving knot differences can become Zero in which case the quotients are defined as zero.

38 RECURSIVE For p>0, N i,p (u) is a linear combination of two (p-1) degree basis function

39 DERIVATIVES OF B-SPLINE WITH MULTIPLE KNOTS For m+1 knots there are n+1 basis functions where n=m-p-1 Example,N 0,p (a)=1 because N 0,0,..,N p-1,0 =0 which therefore implies N P,0 (a)=n 0,p (a)=1.by partition of unity property N i,p (a)=0 for i!=0 and N i,p (b)=0 for i!=n

40 Knots Pth degree B-spline curve Cox-de Boor recursive formula Where: Pi represents the control points represents the basis functions defined on the knot vector m+1

41 Knot Vectors Where values of u range We get a uniform B-spline if the knots are equidistant Amount of knots in U (m+1) is directly related to degree (k) and number of control points (p+1) M = k + p + 1 Example: A cubic B-spline using control points needs m = = 8 Hence, our knot vector

42 Knot Vector Notation Ū : U {u k } Û: U {u k + du}= U + {u k } U + = same as U except u k is replaced by u k + du N ī : basis function after inserting u k into U N î : basis functions after inserting u k + du into U Fig.1. Knot vector notation

43 B-spline derivatives Assume: The final point on the first Bézier curve has the same coordinates as the first point of the second Bézier curve The first derivative at the end of the first Bézier curve is the same as the first derivative at the start of the second Bézier curve The second derivative at the end of the first Bézier curve is the same as the second derivative at the start of the second Bézier curve

44 Derivatives with respect to a knot Given a nonrational B-spline curve of degree p = n+p+1 Defined over knot vector, m The derivative is of the form: where {u k is a knot of multiplicity less than or equal to p, and

45 Right derivative For the right derivative: Let du be such that Step 2 yields new control points 1) insert into 2) insert into Step 1 yields new control points The difference in the numerator:

46 Right and Left Derivative For the left derivative: Let du be such that SAME FORMULA! Finally, The right derivative of a non rational B- spline curve of degree p is another degree p curve: In right derivative k must satisfy: In left derivative k must satisfy:

47 Basis function derivatives Given the basis function knot vector of degree p defined over where m = n+p+1 The derivative is of form: To find the right derivative, let du be such that: Evaluating the definition of the right derivative Then rearranging and manipulating the numerator to be compatible yields the limit in fig.2. Fig.2. Definition of a basis function derivative with respect to u 10

48 Derivatives with respect to knots Note: Difference between left and right derivatives of curves is due to the fact that different sets of functions are nonvanishing for the left and right indexes. For knots of multiplicity of 1, the left and right derivative functions are the same For knots of higher multiplicity different sets are nonvanishing Overlap index range where derivative functions are the same Fig.3. Nonvanishing derivative basis functions with respect to and

49 Computational Algorithms Algorithm 1: An algorithm to compute the point on a B-spline curve and all derivatives up to and including the d-th, at a fixed u-value n: the number of control points is n + 1 p: the degree of the curve U: the knots P: the control points CK[]: output of k-th derivative nders[][]: local array used to store derivative of basis functions Algorithm.1.

50 Computational Algorithms Now, we want to formally differentiate the p-th degree B- spline curve defined on the knot vector, Now dropping the first and last knots of the knot vector U to let it become U. Since U has m - 1 knots then the function, computed on U, is equal to, computed on U Hence, C (u) is a (p-1)th degree curve

51 Computational Algorithms Example: Fig.4. C(u) Fig.5. C (u)

52 Computational Algorithms This algorithm is based on the previous algorithm with the exception of using (AllBasisFuns) instead of (BasisFuns) to return all nonzero basis functions of all degrees (from 0 up to p). Like the previous algorithm, this one computes the point on a B-spline curve and all derivatives up to and including the d-th, at a fixed u-value In particular, N[j][i] is the value of the i-th degree basis function, where 0 i p and 0 j i

53 Part II: Design examples

54 (by Alicia Cantón, Gabinete de Tele-Educación de la Universidad Politécnica de Madrid) Modeling a cup/glass using Kevin Burgess) Modeling a plane engine

55 Part III: GM lab

56

57

58

59

60

61 References The NURBS Book (Monographs in Visual Communication) by Les A. Piegl, Wayne Tiller Piegl, Les A., and Wayne Tiller. Computing the Derivative of NURBS with Respect to a Knot. Computer Aided Geometric Design, vol. 15, no. 9, 1998, pp , doi: /s (98)

Rational Bezier Surface

Rational Bezier Surface Rational Bezier Surface The perspective projection of a 4-dimensional polynomial Bezier surface, S w n ( u, v) B i n i 0 m j 0, u ( ) B j m, v ( ) P w ij ME525x NURBS Curve and Surface Modeling Page 97

More information

Important Properties of B-spline Basis Functions

Important Properties of B-spline Basis Functions Important Properties of B-spline Basis Functions P2.1 N i,p (u) = 0 if u is outside the interval [u i, u i+p+1 ) (local support property). For example, note that N 1,3 is a combination of N 1,0, N 2,0,

More information

An introduction to NURBS

An introduction to NURBS An introduction to NURBS Philippe Lavoie January 20, 1999 A three dimensional (3D) object is composed of curves and surfaces. One must find a way to represent these to be able to model accurately an object.

More information

Advanced Graphics. Beziers, B-splines, and NURBS. Alex Benton, University of Cambridge Supported in part by Google UK, Ltd

Advanced Graphics. Beziers, B-splines, and NURBS. Alex Benton, University of Cambridge Supported in part by Google UK, Ltd Advanced Graphics Beziers, B-splines, and NURBS Alex Benton, University of Cambridge A.Benton@damtp.cam.ac.uk Supported in part by Google UK, Ltd Bezier splines, B-Splines, and NURBS Expensive products

More information

(Spline, Bezier, B-Spline)

(Spline, Bezier, B-Spline) (Spline, Bezier, B-Spline) Spline Drafting terminology Spline is a flexible strip that is easily flexed to pass through a series of design points (control points) to produce a smooth curve. Spline curve

More information

Bézier Splines. B-Splines. B-Splines. CS 475 / CS 675 Computer Graphics. Lecture 14 : Modelling Curves 3 B-Splines. n i t i 1 t n i. J n,i.

Bézier Splines. B-Splines. B-Splines. CS 475 / CS 675 Computer Graphics. Lecture 14 : Modelling Curves 3 B-Splines. n i t i 1 t n i. J n,i. Bézier Splines CS 475 / CS 675 Computer Graphics Lecture 14 : Modelling Curves 3 n P t = B i J n,i t with 0 t 1 J n, i t = i=0 n i t i 1 t n i No local control. Degree restricted by the control polygon.

More information

CS 475 / CS Computer Graphics. Modelling Curves 3 - B-Splines

CS 475 / CS Computer Graphics. Modelling Curves 3 - B-Splines CS 475 / CS 675 - Computer Graphics Modelling Curves 3 - Bézier Splines n P t = i=0 No local control. B i J n,i t with 0 t 1 J n,i t = n i t i 1 t n i Degree restricted by the control polygon. http://www.cs.mtu.edu/~shene/courses/cs3621/notes/spline/bezier/bezier-move-ct-pt.html

More information

Curves and Surfaces 1

Curves and Surfaces 1 Curves and Surfaces 1 Representation of Curves & Surfaces Polygon Meshes Parametric Cubic Curves Parametric Bi-Cubic Surfaces Quadric Surfaces Specialized Modeling Techniques 2 The Teapot 3 Representing

More information

Further Graphics. Bezier Curves and Surfaces. Alex Benton, University of Cambridge Supported in part by Google UK, Ltd

Further Graphics. Bezier Curves and Surfaces. Alex Benton, University of Cambridge Supported in part by Google UK, Ltd Further Graphics Bezier Curves and Surfaces Alex Benton, University of Cambridge alex@bentonian.com 1 Supported in part by Google UK, Ltd CAD, CAM, and a new motivation: shiny things Expensive products

More information

Approximation of 3D-Parametric Functions by Bicubic B-spline Functions

Approximation of 3D-Parametric Functions by Bicubic B-spline Functions International Journal of Mathematical Modelling & Computations Vol. 02, No. 03, 2012, 211-220 Approximation of 3D-Parametric Functions by Bicubic B-spline Functions M. Amirfakhrian a, a Department of Mathematics,

More information

Knot Insertion and Reparametrization of Interval B-spline Curves

Knot Insertion and Reparametrization of Interval B-spline Curves International Journal of Video&Image Processing and Network Security IJVIPNS-IJENS Vol:14 No:05 1 Knot Insertion and Reparametrization of Interval B-spline Curves O. Ismail, Senior Member, IEEE Abstract

More information

Les Piegl Wayne Tiller. The NURBS Book. Second Edition with 334 Figures in 578 Parts. A) Springer

Les Piegl Wayne Tiller. The NURBS Book. Second Edition with 334 Figures in 578 Parts. A) Springer Les Piegl Wayne Tiller The NURBS Book Second Edition with 334 Figures in 578 Parts A) Springer CONTENTS Curve and Surface Basics 1.1 Implicit and Parametric Forms 1 1.2 Power Basis Form of a Curve 5 1.3

More information

08 - Designing Approximating Curves

08 - Designing Approximating Curves 08 - Designing Approximating Curves Acknowledgement: Olga Sorkine-Hornung, Alexander Sorkine-Hornung, Ilya Baran Last time Interpolating curves Monomials Lagrange Hermite Different control types Polynomials

More information

Parametric curves. Brian Curless CSE 457 Spring 2016

Parametric curves. Brian Curless CSE 457 Spring 2016 Parametric curves Brian Curless CSE 457 Spring 2016 1 Reading Required: Angel 10.1-10.3, 10.5.2, 10.6-10.7, 10.9 Optional Bartels, Beatty, and Barsky. An Introduction to Splines for use in Computer Graphics

More information

2D Spline Curves. CS 4620 Lecture 13

2D Spline Curves. CS 4620 Lecture 13 2D Spline Curves CS 4620 Lecture 13 2008 Steve Marschner 1 Motivation: smoothness In many applications we need smooth shapes [Boeing] that is, without discontinuities So far we can make things with corners

More information

An Introduction to B-Spline Curves

An Introduction to B-Spline Curves An Introduction to B-Spline Curves Thomas W. Sederberg March 14, 2005 1 B-Spline Curves Most shapes are simply too complicated to define using a single Bézier curve. A spline curve is a sequence of curve

More information

Design considerations

Design considerations Curves Design considerations local control of shape design each segment independently smoothness and continuity ability to evaluate derivatives stability small change in input leads to small change in

More information

Remark. Jacobs University Visualization and Computer Graphics Lab : ESM4A - Numerical Methods 331

Remark. Jacobs University Visualization and Computer Graphics Lab : ESM4A - Numerical Methods 331 Remark Reconsidering the motivating example, we observe that the derivatives are typically not given by the problem specification. However, they can be estimated in a pre-processing step. A good estimate

More information

Curve and Surface Basics

Curve and Surface Basics Curve and Surface Basics Implicit and parametric forms Power basis form Bezier curves Rational Bezier Curves Tensor Product Surfaces ME525x NURBS Curve and Surface Modeling Page 1 Implicit and Parametric

More information

Interactive Graphics. Lecture 9: Introduction to Spline Curves. Interactive Graphics Lecture 9: Slide 1

Interactive Graphics. Lecture 9: Introduction to Spline Curves. Interactive Graphics Lecture 9: Slide 1 Interactive Graphics Lecture 9: Introduction to Spline Curves Interactive Graphics Lecture 9: Slide 1 Interactive Graphics Lecture 13: Slide 2 Splines The word spline comes from the ship building trade

More information

3D Modeling Parametric Curves & Surfaces

3D Modeling Parametric Curves & Surfaces 3D Modeling Parametric Curves & Surfaces Shandong University Spring 2012 3D Object Representations Raw data Point cloud Range image Polygon soup Solids Voxels BSP tree CSG Sweep Surfaces Mesh Subdivision

More information

Rational Bezier Curves

Rational Bezier Curves Rational Bezier Curves Use of homogeneous coordinates Rational spline curve: define a curve in one higher dimension space, project it down on the homogenizing variable Mathematical formulation: n P(u)

More information

Curves. Computer Graphics CSE 167 Lecture 11

Curves. Computer Graphics CSE 167 Lecture 11 Curves Computer Graphics CSE 167 Lecture 11 CSE 167: Computer graphics Polynomial Curves Polynomial functions Bézier Curves Drawing Bézier curves Piecewise Bézier curves Based on slides courtesy of Jurgen

More information

Parametric Curves. University of Texas at Austin CS384G - Computer Graphics

Parametric Curves. University of Texas at Austin CS384G - Computer Graphics Parametric Curves University of Texas at Austin CS384G - Computer Graphics Fall 2010 Don Fussell Parametric Representations 3 basic representation strategies: Explicit: y = mx + b Implicit: ax + by + c

More information

Parametric Curves. University of Texas at Austin CS384G - Computer Graphics Fall 2010 Don Fussell

Parametric Curves. University of Texas at Austin CS384G - Computer Graphics Fall 2010 Don Fussell Parametric Curves University of Texas at Austin CS384G - Computer Graphics Fall 2010 Don Fussell Parametric Representations 3 basic representation strategies: Explicit: y = mx + b Implicit: ax + by + c

More information

Fall CSCI 420: Computer Graphics. 4.2 Splines. Hao Li.

Fall CSCI 420: Computer Graphics. 4.2 Splines. Hao Li. Fall 2014 CSCI 420: Computer Graphics 4.2 Splines Hao Li http://cs420.hao-li.com 1 Roller coaster Next programming assignment involves creating a 3D roller coaster animation We must model the 3D curve

More information

(Refer Slide Time: 00:02:24 min)

(Refer Slide Time: 00:02:24 min) CAD / CAM Prof. Dr. P. V. Madhusudhan Rao Department of Mechanical Engineering Indian Institute of Technology, Delhi Lecture No. # 9 Parametric Surfaces II So these days, we are discussing the subject

More information

lecture 10: B-Splines

lecture 10: B-Splines 9 lecture : -Splines -Splines: a basis for splines Throughout our discussion of standard polynomial interpolation, we viewed P n as a linear space of dimension n +, and then expressed the unique interpolating

More information

CS 450 Numerical Analysis. Chapter 7: Interpolation

CS 450 Numerical Analysis. Chapter 7: Interpolation Lecture slides based on the textbook Scientific Computing: An Introductory Survey by Michael T. Heath, copyright c 2018 by the Society for Industrial and Applied Mathematics. http://www.siam.org/books/cl80

More information

CHAPTER 6 Parametric Spline Curves

CHAPTER 6 Parametric Spline Curves CHAPTER 6 Parametric Spline Curves When we introduced splines in Chapter 1 we focused on spline curves, or more precisely, vector valued spline functions. In Chapters 2 and 4 we then established the basic

More information

Need for Parametric Equations

Need for Parametric Equations Curves and Surfaces Curves and Surfaces Need for Parametric Equations Affine Combinations Bernstein Polynomials Bezier Curves and Surfaces Continuity when joining curves B Spline Curves and Surfaces Need

More information

Bezier Curves, B-Splines, NURBS

Bezier Curves, B-Splines, NURBS Bezier Curves, B-Splines, NURBS Example Application: Font Design and Display Curved objects are everywhere There is always need for: mathematical fidelity high precision artistic freedom and flexibility

More information

A story about Non Uniform Rational B-Splines. E. Shcherbakov

A story about Non Uniform Rational B-Splines. E. Shcherbakov A story about Non Uniform Rational B-Splines E. Shcherbakov Speakers 09-06: B-spline curves (W. Dijkstra) 16-06: NURBS (E. Shcherbakov) 30-06: B-spline surfaces (M. Patricio) Seminar 16-06-2004 2 Outline

More information

Until now we have worked with flat entities such as lines and flat polygons. Fit well with graphics hardware Mathematically simple

Until now we have worked with flat entities such as lines and flat polygons. Fit well with graphics hardware Mathematically simple Curves and surfaces Escaping Flatland Until now we have worked with flat entities such as lines and flat polygons Fit well with graphics hardware Mathematically simple But the world is not composed of

More information

Efficient Degree Elevation and Knot Insertion for B-spline Curves using Derivatives

Efficient Degree Elevation and Knot Insertion for B-spline Curves using Derivatives Efficient Degree Elevation and Knot Insertion for B-spline Curves using Derivatives Qi-Xing Huang a Shi-Min Hu a,1 Ralph R Martin b a Department of Computer Science and Technology, Tsinghua University,

More information

Lecture 25: Bezier Subdivision. And he took unto him all these, and divided them in the midst, and laid each piece one against another: Genesis 15:10

Lecture 25: Bezier Subdivision. And he took unto him all these, and divided them in the midst, and laid each piece one against another: Genesis 15:10 Lecture 25: Bezier Subdivision And he took unto him all these, and divided them in the midst, and laid each piece one against another: Genesis 15:10 1. Divide and Conquer If we are going to build useful

More information

3D Modeling Parametric Curves & Surfaces. Shandong University Spring 2013

3D Modeling Parametric Curves & Surfaces. Shandong University Spring 2013 3D Modeling Parametric Curves & Surfaces Shandong University Spring 2013 3D Object Representations Raw data Point cloud Range image Polygon soup Surfaces Mesh Subdivision Parametric Implicit Solids Voxels

More information

NURBS: Non-Uniform Rational B-Splines AUI Course Denbigh Starkey

NURBS: Non-Uniform Rational B-Splines AUI Course Denbigh Starkey NURBS: Non-Uniform Rational B-Splines AUI Course Denbigh Starkey 1. Background 2 2. Definitions 3 3. Using NURBS to define a circle 4 4. Homogeneous coordinates & control points at infinity 9 5. Constructing

More information

2D Spline Curves. CS 4620 Lecture 18

2D Spline Curves. CS 4620 Lecture 18 2D Spline Curves CS 4620 Lecture 18 2014 Steve Marschner 1 Motivation: smoothness In many applications we need smooth shapes that is, without discontinuities So far we can make things with corners (lines,

More information

Computergrafik. Matthias Zwicker Universität Bern Herbst 2016

Computergrafik. Matthias Zwicker Universität Bern Herbst 2016 Computergrafik Matthias Zwicker Universität Bern Herbst 2016 Today Curves NURBS Surfaces Parametric surfaces Bilinear patch Bicubic Bézier patch Advanced surface modeling 2 Piecewise Bézier curves Each

More information

Bezier Curves. An Introduction. Detlef Reimers

Bezier Curves. An Introduction. Detlef Reimers Bezier Curves An Introduction Detlef Reimers detlefreimers@gmx.de http://detlefreimers.de September 1, 2011 Chapter 1 Bezier Curve Basics 1.1 Linear Interpolation This section will give you a basic introduction

More information

COMP3421. Global Lighting Part 2: Radiosity

COMP3421. Global Lighting Part 2: Radiosity COMP3421 Global Lighting Part 2: Radiosity Recap: Global Lighting The lighting equation we looked at earlier only handled direct lighting from sources: We added an ambient fudge term to account for all

More information

Computergrafik. Matthias Zwicker. Herbst 2010

Computergrafik. Matthias Zwicker. Herbst 2010 Computergrafik Matthias Zwicker Universität Bern Herbst 2010 Today Curves NURBS Surfaces Parametric surfaces Bilinear patch Bicubic Bézier patch Advanced surface modeling Piecewise Bézier curves Each segment

More information

Parametric curves. Reading. Curves before computers. Mathematical curve representation. CSE 457 Winter Required:

Parametric curves. Reading. Curves before computers. Mathematical curve representation. CSE 457 Winter Required: Reading Required: Angel 10.1-10.3, 10.5.2, 10.6-10.7, 10.9 Parametric curves CSE 457 Winter 2014 Optional Bartels, Beatty, and Barsky. An Introduction to Splines for use in Computer Graphics and Geometric

More information

The Free-form Surface Modelling System

The Free-form Surface Modelling System 1. Introduction The Free-form Surface Modelling System Smooth curves and surfaces must be generated in many computer graphics applications. Many real-world objects are inherently smooth (fig.1), and much

More information

Spline Methods Draft. Tom Lyche and Knut Mørken

Spline Methods Draft. Tom Lyche and Knut Mørken Spline Methods Draft Tom Lyche and Knut Mørken 24th May 2002 2 Contents 1 Splines and B-splines an introduction 3 1.1 Convex combinations and convex hulls..................... 3 1.1.1 Stable computations...........................

More information

p y = 0 x c Figure : Stereographic projection. r p p y = 0 c p Figure : Central projection. Furthermore, we will discuss representations of entire sph

p y = 0 x c Figure : Stereographic projection. r p p y = 0 c p Figure : Central projection. Furthermore, we will discuss representations of entire sph Circle and Sphere as rational splines Claudia Bangert and Hartmut Prautzsch Universitat Karlsruhe, Fakultat fur Informatik D-8 Karlsruhe, Germany corresponding author, e-mail: prau@ira.uka.de Abstract

More information

An Introduction to Bezier Curves, B-Splines, and Tensor Product Surfaces with History and Applications

An Introduction to Bezier Curves, B-Splines, and Tensor Product Surfaces with History and Applications An Introduction to Bezier Curves, B-Splines, and Tensor Product Surfaces with History and Applications Benjamin T. Bertka University of California Santa Cruz May 30 th, 2008 1 History Before computer graphics

More information

Spline Methods Draft. Tom Lyche and Knut Mørken. Department of Informatics Centre of Mathematics for Applications University of Oslo

Spline Methods Draft. Tom Lyche and Knut Mørken. Department of Informatics Centre of Mathematics for Applications University of Oslo Spline Methods Draft Tom Lyche and Knut Mørken Department of Informatics Centre of Mathematics for Applications University of Oslo January 27, 2006 Contents 1 Splines and B-splines an Introduction 1 1.1

More information

Cubic spline interpolation

Cubic spline interpolation Cubic spline interpolation In the following, we want to derive the collocation matrix for cubic spline interpolation. Let us assume that we have equidistant knots. To fulfill the Schoenberg-Whitney condition

More information

CS130 : Computer Graphics Curves (cont.) Tamar Shinar Computer Science & Engineering UC Riverside

CS130 : Computer Graphics Curves (cont.) Tamar Shinar Computer Science & Engineering UC Riverside CS130 : Computer Graphics Curves (cont.) Tamar Shinar Computer Science & Engineering UC Riverside Blending Functions Blending functions are more convenient basis than monomial basis canonical form (monomial

More information

Splines. Parameterization of a Curve. Curve Representations. Roller coaster. What Do We Need From Curves in Computer Graphics? Modeling Complex Shapes

Splines. Parameterization of a Curve. Curve Representations. Roller coaster. What Do We Need From Curves in Computer Graphics? Modeling Complex Shapes CSCI 420 Computer Graphics Lecture 8 Splines Jernej Barbic University of Southern California Hermite Splines Bezier Splines Catmull-Rom Splines Other Cubic Splines [Angel Ch 12.4-12.12] Roller coaster

More information

Interpolation and Splines

Interpolation and Splines Interpolation and Splines Anna Gryboś October 23, 27 1 Problem setting Many of physical phenomenona are described by the functions that we don t know exactly. Often we can calculate or measure the values

More information

CSE 167: Introduction to Computer Graphics Lecture #11: Bezier Curves. Jürgen P. Schulze, Ph.D. University of California, San Diego Fall Quarter 2016

CSE 167: Introduction to Computer Graphics Lecture #11: Bezier Curves. Jürgen P. Schulze, Ph.D. University of California, San Diego Fall Quarter 2016 CSE 167: Introduction to Computer Graphics Lecture #11: Bezier Curves Jürgen P. Schulze, Ph.D. University of California, San Diego Fall Quarter 2016 Announcements Project 3 due tomorrow Midterm 2 next

More information

Properties of Blending Functions

Properties of Blending Functions Chapter 5 Properties of Blending Functions We have just studied how the Bernstein polynomials serve very nicely as blending functions. We have noted that a degree n Bézier curve always begins at P 0 and

More information

B-Splines and NURBS Week 5, Lecture 9

B-Splines and NURBS Week 5, Lecture 9 CS 430/585 Computer Graphics I B-Splines an NURBS Week 5, Lecture 9 Davi Breen, William Regli an Maxim Peysakhov Geometric an Intelligent Computing Laboratory Department of Computer Science Drexel University

More information

Evaluating the knot vector to synthesize the cam motion using NURBS

Evaluating the knot vector to synthesize the cam motion using NURBS Evaluating the knot vector to synthesize the cam motion using NURBS T.T.N. Nguyen 1, S. Kurtenbach 2, M. Hüsing 3 and B. Corves 4 Department of Mechanism Theory and Dynamics of Machines, RWTH Aachen University,

More information

Spline Methods Draft. Tom Lyche and Knut Mørken

Spline Methods Draft. Tom Lyche and Knut Mørken Spline Methods Draft Tom Lyche and Knut Mørken January 5, 2005 2 Contents 1 Splines and B-splines an Introduction 3 1.1 Convex combinations and convex hulls.................... 3 1.1.1 Stable computations...........................

More information

Calculus I Review Handout 1.3 Introduction to Calculus - Limits. by Kevin M. Chevalier

Calculus I Review Handout 1.3 Introduction to Calculus - Limits. by Kevin M. Chevalier Calculus I Review Handout 1.3 Introduction to Calculus - Limits by Kevin M. Chevalier We are now going to dive into Calculus I as we take a look at the it process. While precalculus covered more static

More information

Natural Quartic Spline

Natural Quartic Spline Natural Quartic Spline Rafael E Banchs INTRODUCTION This report describes the natural quartic spline algorithm developed for the enhanced solution of the Time Harmonic Field Electric Logging problem As

More information

Lecture 9: Introduction to Spline Curves

Lecture 9: Introduction to Spline Curves Lecture 9: Introduction to Spline Curves Splines are used in graphics to represent smooth curves and surfaces. They use a small set of control points (knots) and a function that generates a curve through

More information

and the crooked shall be made straight, and the rough ways shall be made smooth; Luke 3:5

and the crooked shall be made straight, and the rough ways shall be made smooth; Luke 3:5 ecture 8: Knot Insertion Algorithms for B-Spline Curves and Surfaces and the crooked shall be made straight, and the rough ways shall be made smooth; uke 3:5. Motivation B-spline methods have several advantages

More information

B-spline Curves. Smoother than other curve forms

B-spline Curves. Smoother than other curve forms Curves and Surfaces B-spline Curves These curves are approximating rather than interpolating curves. The curves come close to, but may not actually pass through, the control points. Usually used as multiple,

More information

CS-184: Computer Graphics

CS-184: Computer Graphics CS-184: Computer Graphics Lecture #12: Curves and Surfaces Prof. James O Brien University of California, Berkeley V2007-F-12-1.0 Today General curve and surface representations Splines and other polynomial

More information

CSE 167: Introduction to Computer Graphics Lecture #13: Curves. Jürgen P. Schulze, Ph.D. University of California, San Diego Fall Quarter 2017

CSE 167: Introduction to Computer Graphics Lecture #13: Curves. Jürgen P. Schulze, Ph.D. University of California, San Diego Fall Quarter 2017 CSE 167: Introduction to Computer Graphics Lecture #13: Curves Jürgen P. Schulze, Ph.D. University of California, San Diego Fall Quarter 2017 Announcements Project 4 due Monday Nov 27 at 2pm Next Tuesday:

More information

COMPUTER AIDED GEOMETRIC DESIGN. Thomas W. Sederberg

COMPUTER AIDED GEOMETRIC DESIGN. Thomas W. Sederberg COMPUTER AIDED GEOMETRIC DESIGN Thomas W. Sederberg January 31, 2011 ii T. W. Sederberg iii Preface This semester is the 24 th time I have taught a course at Brigham Young University titled, Computer Aided

More information

Figure 5.1: Spline and ducks.

Figure 5.1: Spline and ducks. Chapter 5 B-SPLINE CURVES Most shapes are simply too complicated to define using a single Bézier curve. A spline curve is a sequence of curve segments that are connected together to form a single continuous

More information

Curves and Surfaces. Shireen Elhabian and Aly A. Farag University of Louisville

Curves and Surfaces. Shireen Elhabian and Aly A. Farag University of Louisville Curves and Surfaces Shireen Elhabian and Aly A. Farag University of Louisville February 21 A smile is a curve that sets everything straight Phyllis Diller (American comedienne and actress, born 1917) Outline

More information

Linear Interpolating Splines

Linear Interpolating Splines Jim Lambers MAT 772 Fall Semester 2010-11 Lecture 17 Notes Tese notes correspond to Sections 112, 11, and 114 in te text Linear Interpolating Splines We ave seen tat ig-degree polynomial interpolation

More information

Central issues in modelling

Central issues in modelling Central issues in modelling Construct families of curves, surfaces and volumes that can represent common objects usefully; are easy to interact with; interaction includes: manual modelling; fitting to

More information

GL9: Engineering Communications. GL9: CAD techniques. Curves Surfaces Solids Techniques

GL9: Engineering Communications. GL9: CAD techniques. Curves Surfaces Solids Techniques 436-105 Engineering Communications GL9:1 GL9: CAD techniques Curves Surfaces Solids Techniques Parametric curves GL9:2 x = a 1 + b 1 u + c 1 u 2 + d 1 u 3 + y = a 2 + b 2 u + c 2 u 2 + d 2 u 3 + z = a

More information

Most shapes are simply too complicated to dene using a single Bezier curve. A spline curve is

Most shapes are simply too complicated to dene using a single Bezier curve. A spline curve is Chapter 5 B-SPLINE CURVES Most shapes are simply too complicated to dene using a single Bezier curve. A spline curve is a sequence of curve segments that are connected together to form a single continuous

More information

LECTURE #6. Geometric Modelling for Engineering Applications. Geometric modeling for engineering applications

LECTURE #6. Geometric Modelling for Engineering Applications. Geometric modeling for engineering applications LECTURE #6 Geometric modeling for engineering applications Geometric Modelling for Engineering Applications Introduction to modeling Geometric modeling Curve representation Hermite curve Bezier curve B-spline

More information

Finite Difference Calculus

Finite Difference Calculus Chapter 2 Finite Difference Calculus In this chapter we review the calculus of finite differences. The topic is classic and covered in many places. The Taylor series is fundamental to most analysis. A

More information

Free-form curve design by knot alteration

Free-form curve design by knot alteration 6 th International Conference on Applied Informatics Eger, Hungary, January 27 31, 2004. Free-form curve design by knot alteration Imre Juhásza, Miklós Hoffmannb a b Department of Descriptive Geometry,

More information

ECE 600, Dr. Farag, Summer 09

ECE 600, Dr. Farag, Summer 09 ECE 6 Summer29 Course Supplements. Lecture 4 Curves and Surfaces Aly A. Farag University of Louisville Acknowledgements: Help with these slides were provided by Shireen Elhabian A smile is a curve that

More information

Computer Graphics. Curves and Surfaces. Hermite/Bezier Curves, (B-)Splines, and NURBS. By Ulf Assarsson

Computer Graphics. Curves and Surfaces. Hermite/Bezier Curves, (B-)Splines, and NURBS. By Ulf Assarsson Computer Graphics Curves and Surfaces Hermite/Bezier Curves, (B-)Splines, and NURBS By Ulf Assarsson Most of the material is originally made by Edward Angel and is adapted to this course by Ulf Assarsson.

More information

Parameterization of triangular meshes

Parameterization of triangular meshes Parameterization of triangular meshes Michael S. Floater November 10, 2009 Triangular meshes are often used to represent surfaces, at least initially, one reason being that meshes are relatively easy to

More information

Quasi-Quartic Trigonometric Bézier Curves and Surfaces with Shape Parameters

Quasi-Quartic Trigonometric Bézier Curves and Surfaces with Shape Parameters Quasi-Quartic Trigonometric Bézier Curves and Surfaces with Shape Parameters Reenu Sharma Assistant Professor, Department of Mathematics, Mata Gujri Mahila Mahavidyalaya, Jabalpur, Madhya Pradesh, India

More information

Shape Representation Basic problem We make pictures of things How do we describe those things? Many of those things are shapes Other things include

Shape Representation Basic problem We make pictures of things How do we describe those things? Many of those things are shapes Other things include Shape Representation Basic problem We make pictures of things How do we describe those things? Many of those things are shapes Other things include motion, behavior Graphics is a form of simulation and

More information

A Curve Tutorial for Introductory Computer Graphics

A Curve Tutorial for Introductory Computer Graphics A Curve Tutorial for Introductory Computer Graphics Michael Gleicher Department of Computer Sciences University of Wisconsin, Madison October 7, 2003 Note to 559 Students: These notes were put together

More information

CAGD PACKAGE FOR MATHEMATICA AND ITS USAGE IN THE TEACHING

CAGD PACKAGE FOR MATHEMATICA AND ITS USAGE IN THE TEACHING 5. KONFERENCE O GEOMETRII A POČÍTAČOVÉ GRAFICE Bohumír Bastl CAGD PACKAGE FOR MATHEMATICA AND ITS USAGE IN THE TEACHING Abstract This talk presents a new package for Wolfram s Mathematica which provides

More information

Curves and Surfaces Computer Graphics I Lecture 10

Curves and Surfaces Computer Graphics I Lecture 10 15-462 Computer Graphics I Lecture 10 Curves and Surfaces Parametric Representations Cubic Polynomial Forms Hermite Curves Bezier Curves and Surfaces [Angel 10.1-10.6] September 30, 2003 Doug James Carnegie

More information

Research Article Data Visualization Using Rational Trigonometric Spline

Research Article Data Visualization Using Rational Trigonometric Spline Applied Mathematics Volume Article ID 97 pages http://dx.doi.org/.//97 Research Article Data Visualization Using Rational Trigonometric Spline Uzma Bashir and Jamaludin Md. Ali School of Mathematical Sciences

More information

Lecture 2.2 Cubic Splines

Lecture 2.2 Cubic Splines Lecture. Cubic Splines Cubic Spline The equation for a single parametric cubic spline segment is given by 4 i t Bit t t t i (..) where t and t are the parameter values at the beginning and end of the segment.

More information

Fathi El-Yafi Project and Software Development Manager Engineering Simulation

Fathi El-Yafi Project and Software Development Manager Engineering Simulation An Introduction to Geometry Design Algorithms Fathi El-Yafi Project and Software Development Manager Engineering Simulation 1 Geometry: Overview Geometry Basics Definitions Data Semantic Topology Mathematics

More information

Parameterization. Michael S. Floater. November 10, 2011

Parameterization. Michael S. Floater. November 10, 2011 Parameterization Michael S. Floater November 10, 2011 Triangular meshes are often used to represent surfaces, at least initially, one reason being that meshes are relatively easy to generate from point

More information

OUTLINE. Quadratic Bezier Curves Cubic Bezier Curves

OUTLINE. Quadratic Bezier Curves Cubic Bezier Curves BEZIER CURVES 1 OUTLINE Introduce types of curves and surfaces Introduce the types of curves Interpolating Hermite Bezier B-spline Quadratic Bezier Curves Cubic Bezier Curves 2 ESCAPING FLATLAND Until

More information

Positivity Preserving Interpolation of Positive Data by Rational Quadratic Trigonometric Spline

Positivity Preserving Interpolation of Positive Data by Rational Quadratic Trigonometric Spline IOSR Journal of Mathematics (IOSR-JM) e-issn: 2278-5728, p-issn:2319-765x. Volume 10, Issue 2 Ver. IV (Mar-Apr. 2014), PP 42-47 Positivity Preserving Interpolation of Positive Data by Rational Quadratic

More information

Curves and Surfaces Computer Graphics I Lecture 9

Curves and Surfaces Computer Graphics I Lecture 9 15-462 Computer Graphics I Lecture 9 Curves and Surfaces Parametric Representations Cubic Polynomial Forms Hermite Curves Bezier Curves and Surfaces [Angel 10.1-10.6] February 19, 2002 Frank Pfenning Carnegie

More information

Objects 2: Curves & Splines Christian Miller CS Fall 2011

Objects 2: Curves & Splines Christian Miller CS Fall 2011 Objects 2: Curves & Splines Christian Miller CS 354 - Fall 2011 Parametric curves Curves that are defined by an equation and a parameter t Usually t [0, 1], and curve is finite Can be discretized at arbitrary

More information

A generalized conversion matrix between non-uniform B-spline and Bézier representations with applications in CAGD

A generalized conversion matrix between non-uniform B-spline and Bézier representations with applications in CAGD A generalized conversion matrix between non-uniform B-spline and Bézier representations with applications in CAGD Giulio Casciola, Lucia Romani Department of Mathematics, University of Bologna, P.zza di

More information

CS-184: Computer Graphics. Today

CS-184: Computer Graphics. Today CS-84: Computer Graphics Lecture #5: Curves and Surfaces Prof. James O Brien University of California, Berkeley V25F-5-. Today General curve and surface representations Splines and other polynomial bases

More information

Dgp _ lecture 2. Curves

Dgp _ lecture 2. Curves Dgp _ lecture 2 Curves Questions? This lecture will be asking questions about curves, their Relationship to surfaces, and how they are used and controlled. Topics of discussion will be: Free form Curves

More information

Derivative. Bernstein polynomials: Jacobs University Visualization and Computer Graphics Lab : ESM4A - Numerical Methods 313

Derivative. Bernstein polynomials: Jacobs University Visualization and Computer Graphics Lab : ESM4A - Numerical Methods 313 Derivative Bernstein polynomials: 120202: ESM4A - Numerical Methods 313 Derivative Bézier curve (over [0,1]): with differences. being the first forward 120202: ESM4A - Numerical Methods 314 Derivative

More information

Curve Representation ME761A Instructor in Charge Prof. J. Ramkumar Department of Mechanical Engineering, IIT Kanpur

Curve Representation ME761A Instructor in Charge Prof. J. Ramkumar Department of Mechanical Engineering, IIT Kanpur Curve Representation ME761A Instructor in Charge Prof. J. Ramkumar Department of Mechanical Engineering, IIT Kanpur Email: jrkumar@iitk.ac.in Curve representation 1. Wireframe models There are three types

More information

February 2017 (1/20) 2 Piecewise Polynomial Interpolation 2.2 (Natural) Cubic Splines. MA378/531 Numerical Analysis II ( NA2 )

February 2017 (1/20) 2 Piecewise Polynomial Interpolation 2.2 (Natural) Cubic Splines. MA378/531 Numerical Analysis II ( NA2 ) f f f f f (/2).9.8.7.6.5.4.3.2. S Knots.7.6.5.4.3.2. 5 5.2.8.6.4.2 S Knots.2 5 5.9.8.7.6.5.4.3.2..9.8.7.6.5.4.3.2. S Knots 5 5 S Knots 5 5 5 5.35.3.25.2.5..5 5 5.6.5.4.3.2. 5 5 4 x 3 3.5 3 2.5 2.5.5 5

More information

Sung-Eui Yoon ( 윤성의 )

Sung-Eui Yoon ( 윤성의 ) CS480: Computer Graphics Curves and Surfaces Sung-Eui Yoon ( 윤성의 ) Course URL: http://jupiter.kaist.ac.kr/~sungeui/cg Today s Topics Surface representations Smooth curves Subdivision 2 Smooth Curves and

More information

Freeform Curves on Spheres of Arbitrary Dimension

Freeform Curves on Spheres of Arbitrary Dimension Freeform Curves on Spheres of Arbitrary Dimension Scott Schaefer and Ron Goldman Rice University 6100 Main St. Houston, TX 77005 sschaefe@rice.edu and rng@rice.edu Abstract Recursive evaluation procedures

More information

Developing an Approach to Redesign Freeform Surfaces Using B-Spline Technique

Developing an Approach to Redesign Freeform Surfaces Using B-Spline Technique DOI: http://dx.doi.org/10.30684/etj.36.12a.1 Amjad B. Adulghafour A Department of Production Engineering and Metallurgy, University of Technology, Baghdad, Iraq Amjed_barzan@yahoo.com Ahmed T. Hassan Department

More information