Computer Graphics and Geometric Modeling GOSPR 5/5/2005 5:47 PM Page Iii

Total Page:16

File Type:pdf, Size:1020Kb

Computer Graphics and Geometric Modeling GOSPR 5/5/2005 5:47 PM Page Iii GOSPR 5/5/2005 5:47 PM Page i Computer Graphics and Geometric Modeling GOSPR 5/5/2005 5:47 PM Page iii Max K. Agoston Computer Graphics and Geometric Modeling Implementation and Algorithms GOSPR 5/5/2005 5:47 PM Page iv Max K. Agoston, MA, MS, PhD Cupertino, CA 95014, USA British Library Cataloguing in Publication Data Agoston, Max K. Computer graphics and geometric modeling:implementation & algorithms 1. Computer graphics 2. Geometry—Data processing 3. Computer-aided design 4. Computer graphics—Mathematics I. Title 006.6 ISBN 1852338180 Library of Congress Cataloging-in-Publication Data Agoston, Max K. Computer graphics & geometric modeling/Max K. Agoston. p. cm. Includes bibliographical references and index. Contents: Implementation & algorithms ISBN 1-85233-818-0 (v. 1 : alk. paper) 1. Computer graphics. 2. Geometry—Data processing. 3. Mathematical models. 4. CAD/CAM systems. I. Title. T385.A395 2004 006.6—dc22 2004049155 Apart from any fair dealing for the purposes of research or private study, or criticism or review, as per- mitted under the Copyright, Designs and Patents Act 1988, this publication may only be reproduced, stored or transmitted, in any form or by any means, with the prior permission in writing of the publishers, or in the case of reprographic reproduction in accordance with the terms of licences issued by the Copyright Licensing Agency. Enquiries concerning reproduction outside those terms should be sent to the publishers. ISBN 1-85233-818-0 Springer is part of Springer Science+Business Media springeronline.com © Springer-Verlag London Limited 2005 Printed in the United States of America The use of registered names, trademarks, etc. in this publication does not imply, even in the absence of a specific statement, that such names are exempt from the relevant laws and regulations and therefore free for general use. The publisher makes no representation, express or implied, with regard to the accuracy of the information contained in this book and cannot accept any legal responsibility or liability for any errors or omissions that may be made. Typesetting: SNP Best-set Typesetter Ltd., Hong Kong 34/3830-543210 Printed on acid-free paper SPIN 10971451 GOSPR 5/5/2005 5:47 PM Page v Preface This book and [AgoM05] grew out of notes used to teach various types of computer graphics courses over a period of about 20 years. Having retired after a lifetime of teaching and research in mathematics and computer science, I finally had the time to finish these books. The two books together present a comprehensive overview of com- puter graphics as seen in the context of geometric modeling and the mathematics that is required to understand the material. Computer graphics itself is a multifaceted subject, but it has grown up. It is no longer necessary that a book on graphics demon- strate the diversity of the subject with a long list of “fun” projects at the expense of the mathematics. From movies, television, and other areas of everyday life, readers have already seen what graphics is about and what it can do. It follows that one should be able to present the geometric modeling aspect of the subject in a systematic fashion. Unfortunately, the sheer amount of material that I wanted to cover meant that it had to be divided into two parts. This book contains the practical stuff and describes the various algorithms and implementation issues that one runs into when writing a geometric modeling program. The book [AgoM05] provides the mathemat- ical background for the underlying theory. Although each book can be read by itself without reading the other, one will get the most benefit from them if they are read in parallel. The intended audience of this book (and the combined two volumes especially) is quite broad. It can be used in a variety of computer graphics courses or by those who are trying to learn about graphics and geometric modeling on their own. In particu- lar, it is for those who are getting involved in what is referred to as computer-aided design (CAD) or computer-aided geometric design (CAGD), but it is also for mathe- maticians who might want to use computers to study geometry and topology. Both modeling and rendering issues are covered, but the emphasis is on the former. The basic prerequisites are that the reader has had an upper division data structure course, minimally three semesters of calculus, and a course on linear algebra. An additional course on advanced calculus and modern algebra would be ideal for some of the more advanced topics. On the companion CD there is a geometric modeling program (GM) that implements many of the algorithms discussed in the text and is intended to provide a programming environment both for further experimentation and applica- tion development. Another program (SPACE) on the CD is an application that uses some of the more advanced geometric modeling concepts to display the intrinsic GOSPR 5/5/2005 5:47 PM Page vi vi Preface geometry of two- and three-dimensional manifolds. Both programs were written using the Microsoft Visual C++ compiler (and OpenGL) and run under Microsoft Windows 98 or later. Their source code and documentation are included on the CD. The ReadMe file on the CD lists what all is on the CD and also contains instructions for how to use what is there. As I began to develop this book on geometric modeling, one concern obviously was to do a good job in presenting a thorough overview of the practical side of the subject, that is, the algorithms and their implementation details. However, there were two other goals that were important from the very beginning. One was to thoroughly explain the mathematics and the other, to make the material as self-contained as pos- sible. In other words, pretty much every technical term or concept that is used should be defined and explained. The reason for putting all the computer graphics–related material into one book and all the mathematics into the other rather than inter- weaving the material was to keep the structure of the implementation of a modeling program as clear as possible. Furthermore, by separating out the mathematics it is easier for readers to skip those mathematical topics that they are already familiar with and concentrate on those with which they are not. In general, though, and in partic- ular as far as instructors using this book are concerned, the intent is that the mate- rial in the two books be covered in parallel. This is certainly how I always taught my courses. An added motivation for the given division was that the applied part of geo- metric modeling was often a moving target because, largely due to improvements in hardware (faster CPUs, more memory, more hard disk space, better display devices), the way that one deals with it is changing and will continue to change in the future. This is in contrast to the supporting mathematics. There may be new mathematics relevant to computer graphics in the future but it will be a long time before the math- ematics I do discuss will lose its relevance. A lot of it, in fact, is only now starting to be used as hardware becomes capable of dealing with computationally expensive algorithms. One property that sets this book apart from others on geometric modeling is its breadth of coverage, but there is another. The combined books, this one and [AgoM05], differ from other books on computer graphics or geometric modeling in an important way. Some books concentrate on implementation and basically add the relevant mathematics by tossing in appropriate formulas or mathematical algorithms. Others concentrate on some of the mathematical aspects. I attempt to be as compre- hensive on both the implementation and theory side. In [AgoM05] I provide a com- plete reference for all the relevant mathematics, but not in a cookbook fashion. A fundamental guiding principle was to present the mathematics in such a way that the reader will see the motivation for it and understand it. I was aiming at those indi- viduals who will want to take the subject further in the future and this is not possi- ble without such understanding. Just learning a few formulas is not good enough. I have always been frustrated by books that throw the reader some formulas without explaining them. Furthermore, the more mathematics that one knows, the less likely it is that one will end up reinventing something. There are instances (such as in the case of the term “geometric continuity”) where unfamiliarity with what was known caused the introduction of confusing or redundant terminology. The success or failure of the two books should be judged on how much understanding of the mathematics and algorithms the reader gets. In the case of this book by itself, it is a question of whether or not the major topics were covered adequately. In any case, because I GOSPR 5/5/2005 5:47 PM Page vii Preface vii emphasize understanding what is going on, there is a natural emphasis on theory and not on tricks of the trade. The reader will also not find any beautiful glossy pictures. Clearly, no one book can cover all that falls under the general heading of geo- metric modeling. As usual, the topics that are in fact covered and the degree to which they are covered reflect my own bias. In a large field, there are many special topics and it should not be surprising that some are not discussed at all and others only briefly in an overview. On the other hand, one would expect to see a discussion of principles and issues that are basic to the field as a whole.
Recommended publications
  • Model Synthesis: a General Procedural Modeling Algorithm Paul Merrell and Dinesh Manocha University of North Carolina at Chapel Hill
    IEEE TRANSACTIONS ON VISUALIZATION AND COMPUTER GRAPHICS 1 Model Synthesis: A General Procedural Modeling Algorithm Paul Merrell and Dinesh Manocha University of North Carolina at Chapel Hill Abstract—We present a method for procedurally modeling general complex 3D shapes. Our approach can automatically generate complex models of buildings, man-made structures, or urban datasets in a few minutes based on user-defined inputs. The algorithm attempts to generate complex 3D models that resemble a user-defined input model and that satisfy various dimensional, geometric, and algebraic constraints to control the shape. These constraints are used to capture the intent of the user and generate shapes that look more natural. We also describe efficient techniques to handle complex shapes, highlight its performance on many different types of models. We compare model synthesis algorithms with other procedural modeling techniques, discuss the advantages of different approaches, and describe as close connection between model synthesis and context-sensitive grammars. Index Terms—model synthesis, procedural modeling F 1 INTRODUCTION guidance. In this paper, we address the problem of generating REATING 3D digital content for computer games, complex models using model synthesis. Model synthesis C movies, and virtual environments is an important is a simple technique [26], [28] proposed to automatically and challenging problem. It is difficult because objects generate complex shapes. The model synthesis algorithm in the real-world are complex and have widely varying accepts a simple 3D shape as an input and then gener- shapes and styles. Consider the problem of generating ates a larger and more complex model that resembles a realistic 3D model of an outdoor scene.
    [Show full text]
  • Geometric Modelling: Lessons Learned from the 'Step' Standard
    GEOMETRIC MODELLING: LESSONS LEARNED FROM THE 'STEP' STANDARD Michael J. Pratt LMR Systems, UK Abstract: The first release of the international standard ISO 10303 (STEP) occurred in 1994. Since that time there has been much activity in translator development and in the testing of STEP data transfer in industrial applications. Meanwhile, further development of the standard is proceeding, driven to some extent by experience gained in the use of the initial 1994 release. This paper surveys some of the lessons that have been learned in using STEP, concentrating mainly on issues arising in the geometric modelling area. Suggestions are made for overcoming some of the problems encountered. Keywords: ISO 10303, STEP, shape modelling, algebraic geometry, application programming interfaces, geometric accuracy problem, procedural modelling. 1. INTRODUCTION TO ISO 10303 The international standard ISO 10303 (ISO 1994, Owen 1997), informally known as STEP (STandard for the Exchange of Product model data), has a very ambitious coverage: the capture, in electronic form, for data sharing and exchange, of product life-cycle data for manufactured products in general. Since the initial release in 1994 of twelve parts of ISO 10303, some thirty further parts have been published, and many more are under development. Compared with its predecessor IGES (USPro 1996), STEP is intended to handle a much wider range of product-related data, and it is defined in terms of EXPRESS, an information modeling language that forms part of the F. Kimura (ed.), Geometric Modelling © Springer Science+Business Media New York 2001 standard. EXPRESS is used for the formal definition of exchangeable constructs, though the actual physical format in which the information is represented in an exchange file or a shared database is not that of EXPRESS itself.
    [Show full text]
  • Extension of Algorithmic Geometry to Fractal Structures Anton Mishkinis
    Extension of algorithmic geometry to fractal structures Anton Mishkinis To cite this version: Anton Mishkinis. Extension of algorithmic geometry to fractal structures. General Mathematics [math.GM]. Université de Bourgogne, 2013. English. NNT : 2013DIJOS049. tel-00991384 HAL Id: tel-00991384 https://tel.archives-ouvertes.fr/tel-00991384 Submitted on 15 May 2014 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Thèse de Doctorat école doctorale sciences pour l’ingénieur et microtechniques UNIVERSITÉ DE BOURGOGNE Extension des méthodes de géométrie algorithmique aux structures fractales ■ ANTON MISHKINIS Thèse de Doctorat école doctorale sciences pour l’ingénieur et microtechniques UNIVERSITÉ DE BOURGOGNE THÈSE présentée par ANTON MISHKINIS pour obtenir le Grade de Docteur de l’Université de Bourgogne Spécialité : Informatique Extension des méthodes de géométrie algorithmique aux structures fractales Soutenue publiquement le 27 novembre 2013 devant le Jury composé de : MICHAEL BARNSLEY Rapporteur Professeur de l’Université nationale australienne MARC DANIEL Examinateur Professeur de l’école Polytech Marseille CHRISTIAN GENTIL Directeur de thèse HDR, Maître de conférences de l’Université de Bourgogne STEFANIE HAHMANN Examinateur Professeur de l’Université de Grenoble INP SANDRINE LANQUETIN Coencadrant Maître de conférences de l’Université de Bourgogne RONALD GOLDMAN Rapporteur Professeur de l’Université Rice ANDRÉ LIEUTIER Rapporteur “Technology scientific director” chez Dassault Systèmes Contents 1 Introduction 1 1.1 Context .
    [Show full text]
  • Geometric Modeling — Dagstuhl Seminar —
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Dagstuhl Research Online Publication Server 08221 Abstracts Collection Geometric Modeling — Dagstuhl Seminar — Gerald Farin1, Stefanie Hahmann2, Jörg Peters3 and Wenping Wang4 1 ASU - Tempe, USA [email protected] 2 University of Grenoble, F [email protected] 3 University of Florida, USA [email protected] 4 University of Hong Kong, HK [email protected] Abstract. From May 26 to May 30 2008 the Dagstuhl Seminar 08221 “Geo- metric Modeling” was held in the International Conference and Research Center (IBFI), Schloss Dagstuhl. During the seminar, several participants presented their current research, and ongoing work and open problems were discussed. Abstracts of the presentations given during the seminar as well as abstracts of seminar re- sults and ideas are put together in this paper. The first section describes the sem- inar topics and goals in general. Links to extended abstracts or full papers are provided, if available. Keywords. Geometry, engineering, volumetric modeling, computer graphics Executive Summary Geometric Modeling is an area drawing from computer science, mathematics, engineer- ing, and the life sciences. It is concerned with the computer representation of objects as diverse as – brain scans – mathematical functions – terrains – airplane wings and many more. The seminar succeeded in bringing together leading researchers to present and discuss radically different approaches to the challenge of modeling com- plex geometric phenomena on the computer. Acquisition, representation and analysis of 3-dimensional geometry call for the combination of technically complex and often interdisciplinary approaches that are grounded both in classical mathematics and com- puter science data structures and theory.
    [Show full text]
  • Chapter 2 Principles of Geometric Modeling
    In: Borrmann, A.; König, M.; Koch, C.; Beetz, J. (Eds): Building Information Modeling - Technology Foundations and Industry Practice, Springer, 2018, DOI: 10.1007/978-3-319-92862-3 Chapter 2 Principles of Geometric Modeling Andre´ Borrmann and Volker Berkhan Abstract The three-dimensional geometry of a building is a vital prerequisite for Building Information Modeling. This chapter examines the principles involved in representing geometry with a computer. It details explicit and implicit approaches to describing volumetric models as well as the basic principles of parametric modeling for creating flexible, adaptable models. The chapter concludes with an examination of freeform curves and surfaces and their underlying mathematical description. 2.1 Geometric modeling in the context of BIM A Building Information Model contains all the relevant information needed for the planning, construction and operation of a building. The three-dimensional descrip- tion of the geometry of a building is one of the most important aspects without which many BIM applications would not be possible. The availability of a model in three dimensions offers significant advantages over conventionally drawn plans: • The planning and construction of the building can be undertaken using a 3D model rather than separate plans and sections. Drawings are then generated from the 3D model, ensuring that the separate drawings always correspond and remain consistent with one another. This almost entirely eradicates a common source of errors, especially when alterations are made to the plans. But a three-dimensional geometric model on its own is not sufficient for generating plans that conform Andre´ Borrmann Technical University of Munich, Chair of Computational Modeling and Simulation, Arcisstr.
    [Show full text]
  • Where to Find More Information About Computer Graphics and Related Topics
    Where to Find More Information about Computer Graphics and Related Topics Mike Bailey Oregon State University 1. References 1.1 General Computer Graphics SIGGRAPH Online Bibliography Database: http://www.siggraph.org/publications/bibliography Edward Angel, Interactive Computer Graphics: A Top-down Approach with OpenGL, 5th Edition, Addison-Wesley, 2008. Francis Hill and Stephen Kelley, Computer Graphics Using OpenGL, 3rd Edition, Prentice Hall, 2006. Steve Cunningham, Computer Graphics: Programming in OpenGL for Visual Communication, Prentice-Hall, 2007 Alan Watt, 3D Computer Graphics, 3rd Edition, Addison-Wesley, 2000. Peter Shirley, Fundamentals of Computer Graphics, 2nd Edition, AK Peters, 2005. Andrew Glassner, Graphics Gems, Academic Press, 1990. James Arvo, Graphics Gems 2, Academic Press, 1991. David Kirk, Graphics Gems 3, Academic Press, 1992. Paul Heckbert, Graphics Gems 4, Academic Press, 1994. Alan Paeth, Graphics Gems 5, Academic Press, 1995. Jim Blinn, A Trip Down the Graphics Pipeline, Morgan Kaufmann, 1996. Jim Blinn, Dirty Pixels, Morgan Kaufmann, 1998. David Rogers, Procedural Elements for Computer Graphics, McGraw-Hill, 1997. SIGGRAPH Conference Final program. 1.2 Math and Geometry Michael Mortenseon, Geometric Transformations for 3D Modeling, 2nd Edition, Industrial press, 2007. Michael Mortenson, Geometric Modeling, John Wiley & Sons, 2006. September 21, 2010 1 Eric Lengyel, Mathematics for 3D Game Programming and Computer Graphics, Charles River Media, 2002. Jean Gallier, Curves and Surfaces in Geometric Modeling, Morgan Kaufmann, 2000. Walter Taylor, The Geometry of Computer Graphics, Wadsworth & Brooks/Cole, 1992. Gerald Farin, Curves and Surfaces for Computer Aided Geometric Design, 3rd Edition, Academic Press, 2001. Gerald Farin and Dianne Hansford, The Geometry Toolbox for Graphics and Modeling, AK Peters, 1998.
    [Show full text]
  • Dinesh Manocha Distinguished Professor Computer Science University of North Carolina at Chapel Hill
    Dinesh Manocha Distinguished Professor Computer Science University of North Carolina at Chapel Hill Awards and honors and year received (list--no more than *five* items): • 2011: Distinguished Alumni Award, Indian Institute of Technology, Delhi • 2011: Fellow of Institute of Electrical and Electronics Engineers (IEEE) • 2011: Fellow of American Association for the Advancement of Science (AAAS) • 2009: Fellow of Association for Computing Machinery (ACM) • 1997: Office of Naval Research Young Investigator Award Have you previously been involved in any CRA activities? If so, describe. Manocha has been actively involved with organization and participation in CCC workshops that were related to robotics, spatial computing and human-computer interaction. List any other relevant experience and year(s) it occurred (list--no more than *five* items). • SIGGRAPH Executive Committee, Director-At-Large, 2011 – 2014 • General Chair/Co-Chair of 8 conferences and workshops; (1995- onwards) • Member of Editorial board and Guest editor of 20 journals in computer graphics, robotics, geometric computing, and parallel computing. (1995 onwards) • 34 Keynote and Distinguished Lectures between 2011-2015 • Program Chair/Co-Chair of 5 conferences and workshops; 100+ program committees in computer graphics, virtual reality, robotics, gaming, acoustics, and geometric computing Research interests: (list only) • Computer graphics • Virtual reality • Robotics • Geometric computing • Parallel computing Personal Statement Given the dynamic nature of our field, CRA is playing an ever-increasing role in terms of research and education. Over the last 25 years, my research has spanned a variety of different fields, including geometric/symbolic computing, computer graphics, robotics, virtual-reality and parallel computing. I have worked closely with researchers/developers in engineering, medical, and social sciences and also interacted with leading industrial organizations, federal laboratories, and startups.
    [Show full text]
  • Where to Find More Information About Computer Graphics, Parallel Programming, and Related Topics
    Where to Find More Information about Computer Graphics, Parallel Programming, and Related Topics Mike Bailey Oregon State University 1. References 1.1 General Computer Graphics GraphBib: SIGGRAPH’s Online Bibliography Database: http://gbib.siggraph.org/ John Kessenich, Graham Sellers, and Dave Shreiner, OpenGL Programming Guide, 9th Edition, 2017. Edward Angel and Dave Shreiner, Interactive Computer Graphics: A Top-down Approach with OpenGL, 6th Edition, Addison-Wesley, 2011. Francis Hill and Stephen Kelley, Computer Graphics Using OpenGL, 3rd Edition, Prentice Hall, 2006. Steve Cunningham, Computer Graphics: Programming in OpenGL for Visual Communication, Prentice- Hall, 2007 Alan Watt, 3D Computer Graphics, 3rd Edition, Addison-Wesley, 2000. Peter Shirley, Fundamentals of Computer Graphics, 2nd Edition, AK Peters, 2005. Andrew Glassner, Graphics Gems, Academic Press, 1990. James Arvo, Graphics Gems 2, Academic Press, 1991. David Kirk, Graphics Gems 3, Academic Press, 1992. Paul Heckbert, Graphics Gems 4, Academic Press, 1994. Alan Paeth, Graphics Gems 5, Academic Press, 1995. Jim Blinn, A Trip Down the Graphics Pipeline, Morgan Kaufmann, 1996. Jim Blinn, Dirty Pixels, Morgan Kaufmann, 1998. David Rogers, Procedural Elements for Computer Graphics, McGraw-Hill, 1997. SIGGRAPH Conference Final program. 1.2 Vulkan http://cs.oregonstate.edu/~mjb/vulkan Graham Sellers, Vulkan Programming Guide, Addison-Wesley, 2017 mjb – March 2, 2020 1 Pawel Lapinski, Vulkan Cookbook, Packt, 2017. Kenwright, Introduction to Computer Graphics and the Vulkan API, 2017. 1.3 Math and Geometry Ron Goldman, An Integrated Introduction to Computer Graphics and Geometric Modeling, CRC Press, 2009. Michael Mortenseon, Geometric Transformations for 3D Modeling, 2nd Edition, Industrial press, 2007. Michael Mortenson, Geometric Modeling, John Wiley & Sons, 2006.
    [Show full text]
  • Geometric Modeling (WS 2021/22)
    Geometric Modeling (WS 2021/22) Martin Held FB Computerwissenschaften Universität Salzburg A-5020 Salzburg, Austria [email protected] July 20, 2021 UNIVERSITAT¨ SALZBURG Computational Geometry and Applications Lab Personalia Instructor (VO+PS): M. Held. Email: [email protected]. Base-URL: https://www.cosy.sbg.ac.at/˜held. Office: Universität Salzburg, Computerwissenschaften, Rm. 1.20, Jakob-Haringer Str. 2, 5020 Salzburg-Itzling. Phone number (office): (0662) 8044-6304. Phone number (secr.): (0662) 8044-6328. c M. Held (Univ. Salzburg) Geometric Modeling (WS 2021/22) 2/246 Formalia URL of course (VO+PS): Base-URL/teaching/geom_mod/geom_mod.html. Lecture times (VO): Friday 1245–1445. Venue (VO): T03, Computerwissenschaften, Jakob-Haringer Str. 2. Lecture times (PS): Friday 1120–1220. Venue (PS): T03, Computerwissenschaften, Jakob-Haringer Str. 2. Note — PS is graded according to continuous-assessment mode! c M. Held (Univ. Salzburg) Geometric Modeling (WS 2021/22) 3/246 Electronic Slides and Online Material In addition to these slides, you are encouraged to consult the WWW home-page of this lecture: https://www.cosy.sbg.ac.at/˜held/teaching/geom_mod/geom_mod.html. In particular, this WWW page contains up-to-date information on the course, plus links to online notes, slides and (possibly) sample code. c M. Held (Univ. Salzburg) Geometric Modeling (WS 2021/22) 4/246 A Few Words of Warning I I hope that these slides will serve as a practice-minded introduction to various aspects of geometric modeling. I would like to warn you explicitly not to regard these slides as the sole source of information on the topics of my course.
    [Show full text]
  • 56 SPLINES and GEOMETRIC MODELING Chandrajit L
    56 SPLINES AND GEOMETRIC MODELING Chandrajit L. Bajaj INTRODUCTION Piecewise polynomials of fixed degree and continuously differentiable up to some order are known as splines or finite elements. Splines are used in applica- tions ranging from computer-aided design, computer graphics, data visualization, geometric modeling, and image processing to the solution of partial differential equations via finite element analysis. The spline-fitting problem of constructing a mesh of finite elements that interpolate or approximate data is by far the pri- mary research problem in geometric modeling. Parametric splines are vectors of a set of multivariate polynomial (or rational) functions while implicit splines are zero contours of collections of multivariate polynomials. This chapter dwells mainly on spline surface fitting methods in real Euclidean space. We first discuss tensor product surfaces (Section 56.1), perhaps the most popular. The next sec- tions cover generalized spline surfaces (Section 56.2), free-form surfaces (Section 56.3), and subdivision surfaces (Section 56.4). This classification is not strict, and some overlap exists. Interactive editing of surfaces is discussed in the final section (Section 56.5). The various spline methods may be distinguished by several criteria: Implicit or parametric representations. Algebraic and geometric degree of the spline basis. Adaptivity and number of surface patches. Computation (time) and memory (space) required. Stability of fitting algorithms. Local or nonlocal interpolation. Spline Support and splitting of input mesh. Convexity of the input and solution. Fairness of the solution (first- and second-order variation). These distinctions will guide the discussions throughout the chapter. 56.1 TENSOR PRODUCT SURFACES Tensor product B-splines have emerged as the polynomial basis of choice for working with parametric surfaces [Boo68, CLR80].
    [Show full text]
  • Virtual Prototyping with Surface Reconstruction and Freeform Geometric Modeling Using Level-Set Method
    Scholars' Mine Doctoral Dissertations Student Theses and Dissertations Fall 2008 Virtual prototyping with surface reconstruction and freeform geometric modeling using level-set method Weihan Zhang Follow this and additional works at: https://scholarsmine.mst.edu/doctoral_dissertations Part of the Mechanical Engineering Commons Department: Mechanical and Aerospace Engineering Recommended Citation Zhang, Weihan, "Virtual prototyping with surface reconstruction and freeform geometric modeling using level-set method" (2008). Doctoral Dissertations. 1984. https://scholarsmine.mst.edu/doctoral_dissertations/1984 This thesis is brought to you by Scholars' Mine, a service of the Missouri S&T Library and Learning Resources. This work is protected by U. S. Copyright Law. Unauthorized use including reproduction for redistribution requires the permission of the copyright holder. For more information, please contact [email protected]. VIRTUAL PROTOTYPING WITH SURFACE RECONSTRUCTION AND FREEFORM GEOMETRIC MODELING USING LEVEL-SET METHOD by WEIHAN ZHANG A DISSERTATION Presented to the Faculty ofthe Graduate School of the MISSOURI UNIVERSITY OF SCIENCE AND TECHNOLOGY In Partial Fulfillment of the Requirements for the Degree DOCTOR OF PHILOSOPHY IN MECHANICAL ENGINEERING 2008 Approved by Ming C. Leu, Advisor Frank W. Liou Michael G. Hilgers Robert G. Landers Robert B. Stone 111 PUBLICATION DISSERTATION This dissertation includes the following four articles: Pages 50-72 have been published in ASME JOURNAL OF COMPUTING AND INFORMATION SCIENCE IN ENGINEERING, 2007, 7(3), pp. 203-210. Pages 73-106 have been accepted for publication in ASME JOURNAL OF COMPUTING AND INFORMATION SCIENCE IN ENGINEERING. Pages 107-119 have been accepted for publication in CIRP ANNUALS­ MANUFACTURING TECHNOLOGY. Pages 120-142 are prepared for submission to the INTERNATIONAL JOURNAL OF COMPUTER AIDED-DESIGN.
    [Show full text]
  • Computer Aided Design
    ME6501 Computer Aided Design Dept Of Mechanical Engineering RMKEC III/ V MECHANICAL ENGINEERING 3 ME6501 COMPUTER AIDED DESIGN RMKEC III/ V MECHANICAL ENGINEERING TABLE OF CONTENTS S.No. Topic Page No. UNIT- I FUNDAMENTALS OF COMPUTER GRAPHICS 1.1 PRODUCT LIFE CYCLE (PLC) 8 PRODUCT LIFE CYCLE (PLC) FOR CONTINUOUS 1.2. 9 IMPROVEMENT 1.3. TECHNOLOGY DEVELOPMENT CYCLE 10 1.4. THE DESIGN PROCESS - INTRODUCTION 11 1.5. MORPHOLOGY OF DESIGN 15 1.6. DESIGN PROCESS MODELS 18 1.7. SEQUENTIAL ENGINEERING DESIGN 20 1.8. CONCURRENT ENGINEERING DESIGN 20 1.9. ROLE OF COMPUTERS IN DESIGN 24 1.10. CAD SYSTEM ARCHITECTURE 24 1.11. COMPUTER AIDED ENGINEERING – CAD/CAM 25 1.12. APPLICATION OF COMPUTERS TO DESIGN 25 1.13 BENEFITS OF CAD 25 4 ME6501 COMPUTER AIDED DESIGN RMKEC III/ V MECH ANICAL ENGINEERING 1.14. REASONS FOR IMPLEMENTING CAD 26 1.15. COMPUTER GRAPHICS 26 1.16. CO-ORDINATE SYSTEMS 28 1.17. 2 – D DISPLAY CONTROL FACILITIES 31 1.18. 2– D TRANSFORMATIONS 35 1.19. HOMOGENEOUS CO-ORDINATES 39 1.20. 3 – D TRANSFORMATIONS 39 1.21. LINE DRAWING ALGORITHMS 40 UNIT- II GEOMETRIC MODELING 2.1. CURVE REPRESENTATION 44 2.2. HERMITE CURVES 44 2.3. BEZIER CURVE 47 2.4. B-SPLINE CURVES 48 2.5. NURBS CURVE 49 2.6. TECHNIQUES IN SURFACE MODELLING 50 2.7. GEOMETRIC MODELLING 51 2.8. PROPERTIES OF A GEOMETRIC MODELING SYSTEM 51 5 ME6501 COMPUTER AIDED DESIGN RMKEC III/ V MECH ANICAL ENGINEERING 2.9. WIRE FRAME MODELING 54 2.10. TECHNIQUES IN SURFACE MODELLING 55 2.11.
    [Show full text]