Viewing and Projection Viewing and Projection

Total Page:16

File Type:pdf, Size:1020Kb

Viewing and Projection Viewing and Projection Viewing and Projection The topics • Interior parameters • Projection type • Field of view • Clipping • Frustum… • Exterior parameters • Camera position • Camera orientation Transformation Pipeline Local coordinate Local‐>World World coordinate ModelView World‐>Eye Matrix Eye coordinate Projection Matrix Clip coordina te others Screen coordinate Projection • The projection transforms a point from a high‐ dimensional space to a low‐dimensional space. • In 3D, the projection means mapping a 3D point onto a 2D projection plane (or called image plane). • There are two basic projection types: • Parallel: orthographic, oblique • Perspective Orthographic Projection Image Plane Direction of Projection z-axis z=k x 1000 x y 0100 y k 000k z 1 0001 1 Orthographic Projection Oblique Projection Image Plane Direction of Projection Properties of Parallel Projection • Definition: projection directions are parallel. • Doesn’t look real. • Can preserve parallel lines Projection PlllParallel in 3D PlllParallel in 2D Properties of Parallel Projection • Definition: projection directions are parallel. • Doesn’t look real. • Can preserve parallel lines • Can preserve ratios t ' t Projection s s :t s' :t ' s' Properties of Parallel Projection • Definition: projection directions are parallel. • Doesn’t look real. • Can preserve parallel lines • Can preserve ratios • CANNOT preserve angles Projection Properties of Parallel Projection • Definition: projection directions are parallel. • Doesn’t look real. • Can preserve parallel lines • Can preserve ratios • CANNOT preserve angles • Often used in CAD, architecture drawings, when images can be used for measurement. Properties of Parallel Projection • No foreshortening Image Plane Perspective Projection • Perspective projection has foreshortening: Center of Projection Image Plane Perspective Projection • Images are mapped onto the image plane in different ways: An image (640*640) Center of Projection Image Plane Perspective Projection • Images are mapped onto the image plane in different ways: An image (640*640) Center of Projection Image Plane Perspective Projection • Angle of view tells us the mapping from the image to the image plane: Field of view Angle of view Center of Projection Image Plane Perspective Projection • Not everything will be displayed. Frustum Center of Projection Image Plane Near Plane Far Plane Perspective Projection • The frustum of perspective projection looks like: Center of Projection Image Plane Near Plane Ortho Projection • What’s the frustum of orthographic projection? Image Plane Near Far Homogenous Coordinates • In general, the homogeneous coordinate system is define as: wx x wy y In homogeneous wz z In 3D space w 1 • For example, 2 4 1 2 4 8 0.5 1 Homogenous Coordinates • Both homogenous vectors and matrices are scalbllable: wx x wy y wz z w 1 wm wm wm wm m m m m 00 01 02 03 00 01 02 03 wm10 wm11 wm12 wm13 m10 m11 m12 m13 wm wm wm wm m m m m 20 21 22 23 20 21 22 23 wm wm wm wm m m m m 30 31 32 33 30 31 32 33 Perspective Projection • Derivation: x' x y' y d z 1 1 Z Axis d Image Plane XY Plane Perspective Projection • Derivation: xd / z x yd / z y d z 1 1 Z Axis d Image Plane XY Plane Perspective Matrix • Derivation: xd / z x yd / z y d z How? 1 1 xd / z d x yd / z d y d d z 1 1 1 The zaxis now becomes useless… OpenGL Perspective Matrix • In practice, OpenGL uses the zaxis for depth test. Its matrix looks like this: x / z d x y / z d y a b / z ab z 1 1 1 The depth value now can be used for depth test. We will discuss this in more details later... Vanishing Point • Given a ray: px px tnx py py tny nx p z p tn ny z z 1 n 1 z 1 • Its projection: d(px tnx ) px tnx px tnx d d p tn d(py tny ) d py tny z z ... ab p tn pz tnz y y d (p tn ) 1 p tn z z 1 z z Vanishing Point • When tgoes to infinity: Parallel lines meet at p tn n d x x d x the vanihiishing point. p tn n lim z z z t py tny ny d d pz tnz nz • What if there is another ray: q tn x x qy tny q tn z z 1 Properties of Perspective Projection • Lines are mapped to lines. • PlllParallel lines may not remain paralle l. ItdInstead, they may meet at the vanishing point. • Ratios are not preserved. • It has foreshortening effects. So it looks real. • Distances cannot be directly measured, as in parallel projection. Basic OpenGL Projection • Everything will be considered in the eye space: • Geometry objects have been transformed into the eye coordinate system using the GL_MODELVIEW matrix. • You define the projection matrix in GL_PROJECTION, also in the eye space. • OpenGL always assume that the viewing direction is the –z direction. • OpenGL automatically processes each vertex using GL_PROJECTION: • After projtijection, the ftfrustum is convertdted itinto a canonical view volume ( [‐1, 1] in all coordinates) OpenGL Orthographic Projection glOrtho(left,right,bottom,top,near,far) X range Y range Z range (right, top, far) ((,1, 1, 1) (left, bottom, near) (‐1, ‐1, ‐1) OpenGL Orthographic Projection glOrtho(l,r,b,t,n,f) • Translation so that the center is the origin. • Scaling so that the size becomes (2, 2, 2). 2 r l 2 r l r l 1 r l r l 2 2 t b 2 t b 1 t b t b t b 2 2 f n 2 f n 1 f n f n f n 2 1 1 1 OpenGL Perspective Projection glFrustum(left,right,bottom,top,near,far) Always positive, although it’s facing (left, right, bottom, top) the –z direction may not be centered along the axis Frustum Center of Projection Near Plane (Image Plane) Far Plane OpenGL Perspective Projection gluPerspective(fov,aspect_ratio,near,far) Always positive, although it’s facing the –z direction ratio=image_width/image_height top: near*ctan(fov/2) right: near*ratio*ctan(fov/2) Frustum fov Center of Projection Near Plane (Image Plane) Far Plane OpenGL Perspective Projection glFrustum(…) is less useful than gluPerspective(...). But we can still use it for demonstration purpose next. OpenGL Perspective Projection Projection n x xd / z n y yd / z n z n 1 1 1 OpenGL Perspective Projection Projection n x xd / z in (‐1, 1) n y yd / z ab z a b / z 1 1 1 in (‐n, ‐f), why??? OpenGL Perspective Projection a b / (n) 1 (z n) a b /( f ) 1(z f ) xd / z yd / z a b / z f n a 1 f n 2 fn b f n OpenGL Perspective Projection (r/n, t/n, 1) Projection (l/n, b/n, ‐1) 1 x 1 y f n 2 fn z f n f n 1 1 OpenGL Perspective Projection (r/n, t/n, 1) (1, 1, 1) Transform (l/n, b/n, ‐1) (‐1, ‐1, ‐1) 2n r l 2n r l 1 r l 2n r l r l 2n t b 2n t b 1 t b 2n t b t b 1 1 1 1 1 1 Scaling Translation OpenGL Perspective Projection (1, 1, 1) Projection (‐1, ‐1, ‐1) 2n r l 2n r l 1 r l r l r l r l 1 2nt b 2n t b f n 2 fn t b t b t b t b f n f n f n 2 fn 1 1 f n f n 1 Transformation Original Projection 1 What happens after projection? • Clipping clipping • Viewport transformation (800, 800) (1, 1) viewport (‐1, ‐1) • Rasterization (0, 0) rasterize Depth Test • Before rasterization, all processes are done based on vertices. • The z coordinate at each vertex is transformed into a new z value (or called the depth value). • During rasterization, the zvalue of each pixel is itinterpo ltdlated from vertices. • The z value then stored in the depth buffer, for occlusion tests. (smaller zmeans closer). Depth Test • The depth buffer is part of the frame buffer: glutInitDisplayMode(GLUT_DOUBLE|GLUT_RGB|GLUT_DEPTH); • To enable or dbldisable the dhdepth bffbuffer: glEnable(GL_DEPTH_TEST); glDisable(GL_DEPTH_TEST); • Without the depth test, the occlusion is determined by the drawing order. Common Issues • When you set up the perspective matrix: • Near cannot be zero! • far/near cannot be too large! (far cannot be too large, or near cannot be too small.) Why? 2n r l r l r l 2nt b t b t b f n 2 fn f n f n 1 .
Recommended publications
  • CS 543: Computer Graphics Lecture 7 (Part I): Projection Emmanuel
    CS 543: Computer Graphics Lecture 7 (Part I): Projection Emmanuel Agu 3D Viewing and View Volume n Recall: 3D viewing set up Projection Transformation n View volume can have different shapes (different looks) n Different types of projection: parallel, perspective, orthographic, etc n Important to control n Projection type: perspective or orthographic, etc. n Field of view and image aspect ratio n Near and far clipping planes Perspective Projection n Similar to real world n Characterized by object foreshortening n Objects appear larger if they are closer to camera n Need: n Projection center n Projection plane n Projection: Connecting the object to the projection center camera projection plane Projection? Projectors Object in 3 space Projected image VRP COP Orthographic Projection n No foreshortening effect – distance from camera does not matter n The projection center is at infinite n Projection calculation – just drop z coordinates Field of View n Determine how much of the world is taken into the picture n Larger field of view = smaller object projection size center of projection field of view (view angle) y y z q z x Near and Far Clipping Planes n Only objects between near and far planes are drawn n Near plane + far plane + field of view = Viewing Frustum Near plane Far plane y z x Viewing Frustrum n 3D counterpart of 2D world clip window n Objects outside the frustum are clipped Near plane Far plane y z x Viewing Frustum Projection Transformation n In OpenGL: n Set the matrix mode to GL_PROJECTION n Perspective projection: use • gluPerspective(fovy,
    [Show full text]
  • Viewing in 3D
    Viewing in 3D Viewing in 3D Foley & Van Dam, Chapter 6 • Transformation Pipeline • Viewing Plane • Viewing Coordinate System • Projections • Orthographic • Perspective OpenGL Transformation Pipeline Viewing Coordinate System Homogeneous coordinates in World System zw world yw ModelViewModelView Matrix Matrix xw Tractor Viewing System Viewer Coordinates System ProjectionProjection Matrix Matrix Clip y Coordinates v Front- xv ClippingClipping Wheel System P0 zv ViewportViewport Transformation Transformation ne pla ing Window Coordinates View Specifying the Viewing Coordinates Specifying the Viewing Coordinates • Viewing Coordinates system, [xv, yv, zv], describes 3D objects with respect to a viewer zw y v P v xv •A viewing plane (projection plane) is set up N P0 zv perpendicular to zv and aligned with (xv,yv) yw xw ne pla ing • In order to specify a viewing plane we have View to specify: •P0=(x0,y0,z0) is the point where a camera is located •a vector N normal to the plane • P is a point to look-at •N=(P-P)/|P -P| is the view-plane normal vector •a viewing-up vector V 0 0 •V=zw is the view up vector, whose projection onto • a point on the viewing plane the view-plane is directed up Viewing Coordinate System Projections V u N z N ; x ; y z u x • Viewing 3D objects on a 2D display requires a v v V u N v v v mapping from 3D to 2D • The transformation M, from world-coordinate into viewing-coordinates is: • A projection is formed by the intersection of certain lines (projectors) with the view plane 1 2 3 ª x v x v x v 0 º ª 1 0 0 x 0 º « » «
    [Show full text]
  • Implementation of Projections
    CS488 Implementation of projections Luc RENAMBOT 1 3D Graphics • Convert a set of polygons in a 3D world into an image on a 2D screen • After theoretical view • Implementation 2 Transformations P(X,Y,Z) 3D Object Coordinates Modeling Transformation 3D World Coordinates Viewing Transformation 3D Camera Coordinates Projection Transformation 2D Screen Coordinates Window-to-Viewport Transformation 2D Image Coordinates P’(X’,Y’) 3 3D Rendering Pipeline 3D Geometric Primitives Modeling Transform into 3D world coordinate system Transformation Lighting Illuminate according to lighting and reflectance Viewing Transform into 3D camera coordinate system Transformation Projection Transform into 2D camera coordinate system Transformation Clipping Clip primitives outside camera’s view Scan Draw pixels (including texturing, hidden surface, etc.) Conversion Image 4 Orthographic Projection 5 Perspective Projection B F 6 Viewing Reference Coordinate system 7 Projection Reference Point Projection Reference Point (PRP) Center of Window (CW) View Reference Point (VRP) View-Plane Normal (VPN) 8 Implementation • Lots of Matrices • Orthographic matrix • Perspective matrix • 3D World → Normalize to the canonical view volume → Clip against canonical view volume → Project onto projection plane → Translate into viewport 9 Canonical View Volumes • Used because easy to clip against and calculate intersections • Strategies: convert view volumes into “easy” canonical view volumes • Transformations called Npar and Nper 10 Parallel Canonical Volume X or Y Defined by 6 planes
    [Show full text]
  • EX NIHILO – Dahlgren 1
    EX NIHILO – Dahlgren 1 EX NIHILO: A STUDY OF CREATIVITY AND INTERDISCIPLINARY THOUGHT-SYMMETRY IN THE ARTS AND SCIENCES By DAVID F. DAHLGREN Integrated Studies Project submitted to Dr. Patricia Hughes-Fuller in partial fulfillment of the requirements for the degree of Master of Arts – Integrated Studies Athabasca, Alberta August, 2008 EX NIHILO – Dahlgren 2 Waterfall by M. C. Escher EX NIHILO – Dahlgren 3 Contents Page LIST OF ILLUSTRATIONS 4 INTRODUCTION 6 FORMS OF SIMILARITY 8 Surface Connections 9 Mechanistic or Syntagmatic Structure 9 Organic or Paradigmatic Structure 12 Melding Mechanical and Organic Structure 14 FORMS OF FEELING 16 Generative Idea 16 Traits 16 Background Control 17 Simulacrum Effect and Aura 18 The Science of Creativity 19 FORMS OF ART IN SCIENTIFIC THOUGHT 21 Interdisciplinary Concept Similarities 21 Concept Glossary 23 Art as an Aid to Communicating Concepts 27 Interdisciplinary Concept Translation 30 Literature to Science 30 Music to Science 33 Art to Science 35 Reversing the Process 38 Thought Energy 39 FORMS OF THOUGHT ENERGY 41 Zero Point Energy 41 Schools of Fish – Flocks of Birds 41 Encapsulating Aura in Language 42 Encapsulating Aura in Art Forms 50 FORMS OF INNER SPACE 53 Shapes of Sound 53 Soundscapes 54 Musical Topography 57 Drawing Inner Space 58 Exploring Inner Space 66 SUMMARY 70 REFERENCES 71 APPENDICES 78 EX NIHILO – Dahlgren 4 LIST OF ILLUSTRATIONS Page Fig. 1 - Hofstadter’s Lettering 8 Fig. 2 - Stravinsky by Picasso 9 Fig. 3 - Symphony No. 40 in G minor by Mozart 10 Fig. 4 - Bird Pattern – Alhambra palace 10 Fig. 5 - A Tree Graph of the Creative Process 11 Fig.
    [Show full text]
  • CS 4204 Computer Graphics 3D Views and Projection
    CS 4204 Computer Graphics 3D views and projection Adapted from notes by Yong Cao 1 Overview of 3D rendering Modeling: * Topic we’ve already discussed • *Define object in local coordinates • *Place object in world coordinates (modeling transformation) Viewing: • Define camera parameters • Find object location in camera coordinates (viewing transformation) Projection: project object to the viewplane Clipping: clip object to the view volume *Viewport transformation *Rasterization: rasterize object Simple teapot demo 3D rendering pipeline Vertices as input Series of operations/transformations to obtain 2D vertices in screen coordinates These can then be rasterized 3D rendering pipeline We’ve already discussed: • Viewport transformation • 3D modeling transformations We’ll talk about remaining topics in reverse order: • 3D clipping (simple extension of 2D clipping) • 3D projection • 3D viewing Clipping: 3D Cohen-Sutherland Use 6-bit outcodes When needed, clip line segment against planes Viewing and Projection Camera Analogy: 1. Set up your tripod and point the camera at the scene (viewing transformation). 2. Arrange the scene to be photographed into the desired composition (modeling transformation). 3. Choose a camera lens or adjust the zoom (projection transformation). 4. Determine how large you want the final photograph to be - for example, you might want it enlarged (viewport transformation). Projection transformations Introduction to Projection Transformations Mapping: f : Rn Rm Projection: n > m Planar Projection: Projection on a plane.
    [Show full text]
  • Map Projections
    Map Projections Chapter 4 Map Projections What is map projection? Why are map projections drawn? What are the different types of projections? Which projection is most suitably used for which area? In this chapter, we will seek the answers of such essential questions. MAP PROJECTION Map projection is the method of transferring the graticule of latitude and longitude on a plane surface. It can also be defined as the transformation of spherical network of parallels and meridians on a plane surface. As you know that, the earth on which we live in is not flat. It is geoid in shape like a sphere. A globe is the best model of the earth. Due to this property of the globe, the shape and sizes of the continents and oceans are accurately shown on it. It also shows the directions and distances very accurately. The globe is divided into various segments by the lines of latitude and longitude. The horizontal lines represent the parallels of latitude and the vertical lines represent the meridians of the longitude. The network of parallels and meridians is called graticule. This network facilitates drawing of maps. Drawing of the graticule on a flat surface is called projection. But a globe has many limitations. It is expensive. It can neither be carried everywhere easily nor can a minor detail be shown on it. Besides, on the globe the meridians are semi-circles and the parallels 35 are circles. When they are transferred on a plane surface, they become intersecting straight lines or curved lines. 2021-22 Practical Work in Geography NEED FOR MAP PROJECTION The need for a map projection mainly arises to have a detailed study of a 36 region, which is not possible to do from a globe.
    [Show full text]
  • 189 09 Aju 03 Bryon 8/1/10 07:25 Página 31
    189_09 aju 03 Bryon 8/1/10 07:25 Página 31 Measuring the qualities of Choisy’s oblique and axonometric projections Hilary Bryon Auguste Choisy is renowned for his «axonometric» representations, particularly those illustrating his Histoire de l’architecture (1899). Yet, «axonometric» is a misnomer if uniformly applied to describe Choisy’s pictorial parallel projections. The nomenclature of parallel projection is often ambiguous and confusing. Yet, the actual history of parallel projection reveals a drawing system delineated by oblique and axonometric projections which relate to inherent spatial differences. By clarifying the intrinsic demarcations between these two forms of parallel pro- jection, one can discern that Choisy not only used the two spatial classes of pictor- ial parallel projection, the oblique and the orthographic axonometric, but in fact manipulated their inherent differences to communicate his theory of architecture. Parallel projection is a form of pictorial representation in which the projectors are parallel. Unlike perspective projection, in which the projectors meet at a fixed point in space, parallel projectors are said to meet at infinity. Oblique and axonometric projections are differentiated by the directions of their parallel pro- jectors. Oblique projection is delineated by projectors oblique to the plane of pro- jection, whereas the orthographic axonometric projection is defined by projectors perpendicular to the plane of projection. Axonometric projection is differentiated relative to its angles of rotation to the picture plane. When all three axes are ro- tated so that each is equally inclined to the plane of projection, the axonometric projection is isometric; all three axes are foreshortened and scaled equally.
    [Show full text]
  • Shortcuts Guide
    Shortcuts Guide One Key Shortcuts Toggles and Screen Management Hot Keys A–Z Printable Keyboard Stickers ONE KEY SHORTCUTS [SEE PRINTABLE KEYBOARD STICKERS ON PAGE 11] mode mode mode mode Help text screen object 3DOsnap Isoplane Dynamic UCS grid ortho snap polar object dynamic mode mode Display Toggle Toggle snap Toggle Toggle Toggle Toggle Toggle Toggle Toggle Toggle snap tracking Toggle input PrtScn ScrLK Pause Esc F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 SysRq Break ~ ! @ # $ % ^ & * ( ) — + Backspace Home End ` 1 2 3 4 5 6 7 8 9 0 - = { } | Tab Q W E R T Y U I O P Insert Page QSAVE WBLOCK ERASE REDRAW MTEXT INSERT OFFSET PAN [ ] \ Up : “ Caps Lock A S D F G H J K L Enter Delete Page ARC STRETCH DIMSTYLE FILLET GROUP HATCH JOIN LINE ; ‘ Down < > ? Shift Z X C V B N M Shift ZOOM EXPLODE CIRCLE VIEW BLOCK MOVE , . / Ctrl Start Alt Alt Ctrl Q QSAVE / Saves the current drawing. C CIRCLE / Creates a circle. H HATCH / Fills an enclosed area or selected objects with a hatch pattern, solid fill, or A ARC / Creates an arc. R REDRAW / Refreshes the display gradient fill. in the current viewport. Z ZOOM / Increases or decreases the J JOIN / Joins similar objects to form magnification of the view in the F FILLET / Rounds and fillets the edges a single, unbroken object. current viewport. of objects. M MOVE / Moves objects a specified W WBLOCK / Writes objects or V VIEW / Saves and restores named distance in a specified direction. a block to a new drawing file.
    [Show full text]
  • Visual Impairment and Deafblind Education Quarterly Volume 61
    Visual Impairment and Deafblind Education Quarterly 2016 Convention Issue Volume 61 Number 2 2016 ; Lorem Ipsum Dolor Spring 2016 This is a publication of the Council for Exceptional Children’s Division on Visual Impairments and DeafBlindness (CEC- DVIDB). Advertisements included in this issue are not endorsements of products or services, and individual views of authors are not necessarily the official position of CEC and/or DVIDB. Cover Photo Cover photo is of the St. Louis arch. St. Louis, Missouri was the home of CEC’s 2016 International Convention. Photograph courtesy of Stephanie Barrows. 2 2 ; Lorem Ipsum Dolor Spring 2016 Volume 61, Number 21 Page 6 Message from the Editor 8 President’s Message 14 Virgina M. Sowell Award: Jessica Kolvites 16 Dissertation of the Year Award: Dr. Ellen Bowman 19 Teacher of the Year Award: Rachel Schles 23 Exemplary Advocate Award: Teresa Lacy 26 Distinguished Service Award: Dr. Alana Zambone 30 Including Students Who Are Blind or Have Low Vision in English Language Proficiency Assessments 35 Early Intervention and Visual Impairments: A Prepared Workforce 53 Introducing the iBraille Challenge! 3 3 ; Lorem Ipsum Dolor Spring 2016 Volume 61, Number 2 Page 60 Mathematics Instruction for Students with Visual Impairments: What is there and where can we go 70 Peer Assisted Learning Strategies to Improve Reading Fluency and Socialization Among Students Who Are Blind and Visually Impaired 77 University and School for the Deaf and Blind Parternship Experience 79 The Expanded Core Curriculum: What We Learned at the Florida School for the Deaf and Blind 85 Experience of a Lifetime for an Undergraduate Student 92 Missouri School for the Blind 107 DVIDB Professional Standards Committee Report 4 4 ; Lorem Ipsum Dolor Spring 2016 Volume 61, Number 2 Page 109 Ad Hoc Committee on DVIDB Position Paper 116 The Expanded Core Curriculum 137 CEC Membership Application 5 5 ; Lorem Ipsum Dolor Spring 2016 Kathleen Farrand, Ph.D.
    [Show full text]
  • Image Formation • Projection Geometry • Radiometry (Image
    Image Formation • Projection Geometry • Radiometry (Image Brightness) - to be discussed later in SFS. Image Formation 1 Pinhole Camera (source: A Guided tour of computer vision/Vic Nalwa) Image Formation 2 Perspective Projection (source: A Guided tour of computer vision/Vic Nalwa) Image Formation 3 Perspective Projection Image Formation 4 Some Observations/questions • Note that under perspective projection, straight- lines in 3-D project as straight lines in the 2-D image plane. Can you prove this analytically? – What is the shape of the image of a sphere? – What is the shape of the image of a circular disk? Assume that the disk lies in a plane that is tilted with respect to the image plane. • What would be the image of a set of parallel lines – Do they remain parallel in the image plane? Image Formation 5 Note: Equation for a line in 3-D (and in 2-D) Line in 3-D: Line in 2-D By using the projective geometry equations, it is easy to show that a line in 3-D projects as a line in 2-D. Image Formation 6 Vanishing Point • Vanishing point of a straight line under perspective projection is that point in the image beyond which the projection of the straight line can not extend. – I.e., if the straight line were infinitely long in space, the line would appear to vanish at its vanishing point in the image. – The vanishing point of a line depends ONLY on its orientation is space, and not on its position. – Thus, parallel lines in space appear to meet at their vanishing point in image.
    [Show full text]
  • A General-Purpose Animation System for 4D Justin Alain Jensen Brigham Young University
    Brigham Young University BYU ScholarsArchive All Theses and Dissertations 2017-08-01 A General-Purpose Animation System for 4D Justin Alain Jensen Brigham Young University Follow this and additional works at: https://scholarsarchive.byu.edu/etd Part of the Computer Sciences Commons BYU ScholarsArchive Citation Jensen, Justin Alain, "A General-Purpose Animation System for 4D" (2017). All Theses and Dissertations. 6968. https://scholarsarchive.byu.edu/etd/6968 This Thesis is brought to you for free and open access by BYU ScholarsArchive. It has been accepted for inclusion in All Theses and Dissertations by an authorized administrator of BYU ScholarsArchive. For more information, please contact [email protected], [email protected]. A General-Purpose Animation System for 4D Justin Alain Jensen A thesis submitted to the faculty of Brigham Young University in partial fulfillment of the requirements for the degree of Master of Science Robert P. Burton, Chair Parris K. Egbert Seth R. Holladay Department of Computer Science Brigham Young University Copyright c 2017 Justin Alain Jensen All Rights Reserved ABSTRACT A General-Purpose Animation System for 4D Justin Alain Jensen Department of Computer Science, BYU Master of Science Computer animation has been limited almost exclusively to 2D and 3D. The tools for 3D computer animation have been largely in place for decades and are well-understood. Existing tools for visualizing 4D geometry include minimal animation features. Few tools have been designed specifically for animation of higher-dimensional objects, phenomena, or spaces. None have been designed to be familiar to 3D animators. A general-purpose 4D animation system can be expected to facilitate more widespread understanding of 4D geometry and space, can become the basis for creating unique 3D visual effects, and may offer new insight into 3D animation concepts.
    [Show full text]
  • New Techniques and Applications P4
    TUESDAY PROCEEDINGS OF THE 31ST ANNUAL MEETING TUESDAY, JUNE 5, 1984 measure EFs which correlate well with gamma camera measurements) was employed to record sequential 2 minute time activity curves from the left ventricles of 6 healthy men (ages 19-24) during a control period and during a 30 8:00-10:00 Petree Hall in the Los Angeles Convention Center minute stress interview with a psychiatrist. Four o£the subjects were also monitored in a cold room (1°C) for 20 min« In addition to the left ventricular time-activity FORMAL OPENING AND PLENARY SESSION curve, heart rate (HR), and BP (cuff) were recorded. All 8:15 WELCOME AND TRIBUTE TO THE FOUNDER'S subjects had increases in HR, BP and EF during the stress interview. Cold, however, produced decreases in HR and EF GROUP,* Merle K. Loken, M.D., Ph.D., and an increase in BP. The results (mean±Su)are tabulated below: President, Society of Nuclear Medicine HR BP EF Rest 66+ 2 121/80 ±13/4 51+11 REMARKS: B. Leonard Holman, M.D., Chairman, Sci Interview 76+11* 158/101+ 7/7* 68+13* Rest Pre-cold 70+ 7 114/76 +12/5 58+ 7 entific Program Committee 1984 Cold 63+ 4* 141/94 +14/5* 37+ 4* *p<.05 REMARKS: Shelley D. Hartnett, CNMT, President, End-systolic and end-diastolic counts and hence volume decreased during the interview and increased during cold Technologist Section exposure. These data suggest that (1) ambulatory changes in REMARKS: Thomas P. Haynie III, M.D., Chairman, ventricular function can be measured with the VEST, and (2) significant changes in cardiovascular physiology are seen Credentials and Membership Committee in normal subjects during a stress interview and exposure to cold.
    [Show full text]