1 / 15

CSE325 Computer Science and Sculpture

CSE325 Computer Science and Sculpture. Prof. George Hart. Triangulated Surfaces. Any 3D form (polyhedral or curved) can be approximated by a triangulated surface. Polygons of 4 or more sides can be divided into triangles.

milly
Download Presentation

CSE325 Computer Science and Sculpture

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CSE325 Computer Science and Sculpture Prof. George Hart

  2. Triangulated Surfaces • Any 3D form (polyhedral or curved) can be approximated by a triangulated surface. • Polygons of 4 or more sides can be divided into triangles. • On a computer these are represented by listing the three corners for each triangle. • A corner (a vertex) is described by XYZ coordinates

  3. Many Triangles Allow Detail

  4. Polygons Divide into Triangles 4 sides  2 5 sides  3 8 sides  6 An n-gon is represented as n-2 triangles

  5. Triangles in Space • Each vertex has (X, Y, Z) coordinates • List vertices starting with any of the three • List counter-clockwise as seen from outside • “Normal vector” points out from object • Use “Right-handed” XYZ axes Triangle:(0,0,0) (0,1,0) (0,0,1) Or:(0,1,0) (0,0,1) (0,0,0) Or:(0,0,1) (0,0,0) (0,1,0)

  6. “Right-Handed” Coordinate System

  7. Example Tetrahedron A: (1 1 1) (-1 -1 1) (1 -1 -1) B: (-1 -1 1) (-1 1 -1) (1 -1 -1) C: (1 1 1) (1 -1 -1) (-1 1 -1) D: (1 1 1) (-1 1 -1) (-1 -1 1)

  8. Many 3D File Formats Exist 3dm, 3dmf 3DMax iob Imagine dxf, dxb AutoCAD DXF 3dm Rhinoceros pro Power Render mts Metastream file flt OpenFlight ase 3D Studio MAX dwg AutoCAD DWG ndo Nendo si SOFTIMAGE spx SPX file format peo, geo Homeworld stl Stereolithography … • 3ds 3D Studio Binary • cob Caligari objects • scn Caligari • lwo, lw LightWave • obj Alias WaveFront objects • objf Stripe objf file format • off Object file format • geo AOFF File Format • raw RAW File Format • rax RAX File Format • x Direct X • wrl VRML • c4d Cinema 4D

  9. Note: We will Simplify A Lot • Different 3D formats contain many different ways of describing not just triangles but also polygons, curves, colors, textures, images, lights, cameras, animation, hierarchical structure, annotations, compression, and more that is very useful in rendering images. • We’ll ignore all that and just look at triangles • Triangles are sufficient for describing form

  10. stl File Format • You can create an ASCII stl file in any text editor, e.g., word or wordpad • Then view it in any 3D viewing program. • Usually a 3D design program (e.g., Maya) is used to create/modify/view the file, but we will make files with a text editor as an exercise to understand the process. • The stl file can then be given to a solid freeform fabrication machine to have your form physically created.

  11. stl File Format • Create file in any text editor • Write a start line, an end line, and a group of 7 lines for each triangle. • Triangles can be listed in any order. solid <name> <triangle 1 (7 lines)> <triangle 2 (7 lines)> <triangle 3 (7 lines)> … endsolid <name>

  12. stl File Format • For each triangle give 7 lines: facet normal 0 0 0 outer loop vertex X Y Z vertex X Y Z vertex X Y Z endloop endfacet • Only the X Y Z parts need to change for each triangle • (Some programs need the “normal”) • Easy to “copy” and “paste” in editor

  13. Example stl File Format (ASCII) facet normal 0 0 0 outer loop vertex 1 1 1 vertex -1 -1 1 vertex 1 -1 -1 endloop endfacet facet normal 0 0 0 outer loop vertex -1 1 -1 vertex 1 -1 -1 vertex -1 -1 1 endloop endfacet endsolid tetrahedron solid tetrahedron facet normal 0 0 0 outer loop vertex 1 1 1 vertex 1 -1 -1 vertex -1 1 -1 endloop endfacet facet normal 0 0 0 outer loop vertex 1 1 1 vertex -1 1 -1 vertex -1 -1 1 endloop endfacet

  14. Lab exercise • Design an object (a pyramid; then an icosahedron) • determine coordinates of vertices • determine triangles • Create .stl file in editor • Save it with new name, e.g., pyramid.stl • Paste in start line, group of 7 lines, and end line • Edit it to have enough groups of 7 lines • Edit each group to have the three XYZs for one triangle • View it in 3D viewing program • Find any problems and edit file to fix them

  15. Demo • Creating stl file • Editing file • Viewing file • Possible errors: • Incorrect formatting • Unmatched edges • Backwards-facing faces

More Related