OpenSCAD. About OpenSCAD. Open SCAD is focused on the CAD (Computer Aided Design) aspects of creating 3D

Size: px
Start display at page:

Download "OpenSCAD. About OpenSCAD. Open SCAD is focused on the CAD (Computer Aided Design) aspects of creating 3D"

Transcription

1 OpenSCAD OpenSCAD is a free software for creating solid 3D CAD objects. It is available for Linux/UNIX, MS Windows and Mac OS X. About OpenSCAD Open SCAD is focused on the CAD (Computer Aided Design) aspects of creating 3D models. Other programs (such as Blender) are more concentrated on the artistics aspects of this process. Thus, it might be the application you are looking for when you are planning to create 3D models of machine parts. OpenSCAD is not an interactive modeller. Instead it is something like a 3D-compiler that reads in a script file that describes the object and renders the 3D model from this script file. This gives you (the designer) full control over the modelling process and enables you to easily change any step in the modelling process or make designs that are defined by configurable parameters. OpenSCAD provides two main modelling techniques: First there is constructive solid geometry (aka CSG) and second there is extrusion of 2D outlines. As data exchange format for this 2D outlines Autocad DXF files are used. In addition to 2D paths for extrusion it is also possible to read design parameters from DXF files. Besides DXF files OpenSCAD can read and create 3D models in the STL and OFF file formats.

2 The OpenSCAD Interface The user interface of OpenSCAD has three parts The viewing area The console window The text editor Viewing area Preview and rendering output goes into the viewing area. Using the Show Axes menu entry an indicator for the coordinate axes can be enabled. Console window Status information, warnings and errors are displayed in the console window. Text editor The built-in text editor provides basic editing features like text search & replace and also supports syntax highlighting. There are predefined color schemes which can be selected in the Preferences dialog.

3 Example 1: Create a simple cuboid First Steps in OpenSCAD In the editor window write: cube ([3,3,3]); Then press F5 to compile and render the cube Example 2: Positioning and object Here we are going to use the translate positioning command to place an identical cuboid next to the cuboid we have already created in example 1 In the editor window write: cube ([3,3,3]); translate ([5,0,0]){ cube ([3,3,3]); Press F5 Notice that there is NO semicolon under the translate function Notice that curly brackets { are a part of the translate function Example 3: Changing the color of an object Colors in OpenSCAD is based in the RGB mode (Red, Green, Blue) Note: the range of Red, Green and Blue changes from 0.0 to 1.0 instead of 0 to 255. We are going to draw 3 cubes in 3 different colors: red, green and blue. In the editor window write: color ([1,0,0]) cube ([3,3,3]); translate ([3,0,0]) color ([0,1,0]) cube ([3,3,3]); translate ([6,0,0]) color ([0,0,1]) cube ([3,3,3]); Press F5 to compile and render the result

4 Example 4: Draw a sphere Spheres are always drawn centred at the origin of the coordinate system. The radius or the diameter can be used as a parameter: sphere(radius) or sphere(diameter). Resolution can be added with the $fn parameter. Be careful: high n values slow down the generation of the model. In the editor window, write: sphere (r=5); sphere (9); sphere(d=12); sphere (5, $fn=20); sphere (9, $fn=40); sphere (12, $fn=80); Press F5 to render the result. Example 5: Draw cylinders and cones Cylinders and Cones use the same instruction. The only difference is that for the cylinder we write one radius, and for the cone we write two radius. The instruction format is cylinder (height, r1, r2, center). Diameters and the modifiers $fn. $fa and $fs for circumferences can also be used. In the editor window, write: cylinder (h=15, r1=20, r2=10, center = false); Press F5 to render the model, and then: a) Change the values of the center to true. What happens? b) Exchange the values of r1 and r2. What s the result? c) Now write cylinder (h = 15, r = 20); What figures appears? d) Add the parameter $fn=6. What s the new figure?

5 More examples in OpenSCAD Example 6: Union of two cylinders union() { cylinder (h = 4, r=1, center = true, $fn=100); rotate ([90,0,0]) cylinder (h = 4, r=0.9, center = true, $fn=100); Example 7: Difference of two cylinders difference() { cylinder (h = 4, r=1, center = true, $fn=100); rotate ([90,0,0]) cylinder (h = 4, r=0.9, center = true, $fn=100);

6 Example 8: Intersection of two cylinders intersection() { cylinder (h = 4, r=1, center = true, $fn=100); rotate ([90,0,0]) cylinder (h = 4, r=0.9, center = true, $fn=100); Example 9: Union, Difference and Intersection of two cuboids This is an advanced example for you to TRY the code for examples 6, 7 and 8 with a cuboid instead of a cylinder. Example 10: Creating a simple keyholder $fn = 20; difference () { hull () { # translate([0,0,0]) cylinder(r=2,h=3); translate([10,0,0]) cylinder(r=2,h=3); translate([5,40,0]) cylinder(r=4,h=3); translate([5,38,-1]) cylinder(r=1,h=5);

INVESTIGATE: PARAMETRIC AND CUSTOMIZABLE MODELS

INVESTIGATE: PARAMETRIC AND CUSTOMIZABLE MODELS LEARNING OBJECTIVES General Confidence writing basic code with simple parameters Understanding measurement and dimensions 3D Design (Parametric Modeling) Modifying parameters Basic OpenSCAD code Translation

More information

Constructive Solid Geometry and Procedural Modeling. Stelian Coros

Constructive Solid Geometry and Procedural Modeling. Stelian Coros Constructive Solid Geometry and Procedural Modeling Stelian Coros Somewhat unrelated Schedule for presentations February 3 5 10 12 17 19 24 26 March 3 5 10 12 17 19 24 26 30 April 2 7 9 14 16 21 23 28

More information

74 PROJECT: PARAMETRIC MODELING WITH OPENSCAD MAKERBOT IN THE CLASSROOM

74 PROJECT: PARAMETRIC MODELING WITH OPENSCAD MAKERBOT IN THE CLASSROOM PROJECT: Parametric Modeling with OpenSCAD 74 PROJECT: PARAMETRIC MODELING WITH OPENSCAD MAKERBOT IN THE CLASSROOM LEARN TO CODE FOR 3D PRINTING: MAKE A NAMETAG BACKGROUND In this project, students will

More information

Program Kit. Dream Big. Learn Code. WisCode Literati

Program Kit. Dream Big. Learn Code. WisCode Literati Program Kit At WisCode Literati, we believe that teaching our communities how to code is essential for the future! Learning to code allows individuals to interact and compete in a highly digital society

More information

12 m. 30 m. The Volume of a sphere is 36 cubic units. Find the length of the radius.

12 m. 30 m. The Volume of a sphere is 36 cubic units. Find the length of the radius. NAME DATE PER. REVIEW #18: SPHERES, COMPOSITE FIGURES, & CHANGING DIMENSIONS PART 1: SURFACE AREA & VOLUME OF SPHERES Find the measure(s) indicated. Answers to even numbered problems should be rounded

More information

(1) Page #2 26 Even. (2) Page 596 #1 14. (3) Page #15 25 ; FF #26 and 28. (4) Page 603 #1 18. (5) Page #19 26

(1) Page #2 26 Even. (2) Page 596 #1 14. (3) Page #15 25 ; FF #26 and 28. (4) Page 603 #1 18. (5) Page #19 26 Geometry/Trigonometry Unit 10: Surface Area and Volume of Solids Notes Name: Date: Period: # (1) Page 590 591 #2 26 Even (2) Page 596 #1 14 (3) Page 596 597 #15 25 ; FF #26 and 28 (4) Page 603 #1 18 (5)

More information

Solid Modeling: Part 1

Solid Modeling: Part 1 Solid Modeling: Part 1 Basics of Revolving, Extruding, and Boolean Operations Revolving Exercise: Stepped Shaft Start AutoCAD and use the solid.dwt template file to create a new drawing. Create the top

More information

3D Design with 123D Design

3D Design with 123D Design 3D Design with 123D Design Introduction: 3D Design involves thinking and creating in 3 dimensions. x, y and z axis Working with 123D Design 123D Design is a 3D design software package from Autodesk. A

More information

Lesson 5 Solid Modeling - Constructive Solid Geometry

Lesson 5 Solid Modeling - Constructive Solid Geometry AutoCAD 2000i Tutorial 5-1 Lesson 5 Solid Modeling - Constructive Solid Geometry Understand the Constructive Solid Geometry Concept. Create a Binary Tree. Understand the basic Boolean Operations. Create

More information

Calypso Construction Features. Construction Features 1

Calypso Construction Features. Construction Features 1 Calypso 1 The Construction dropdown menu contains several useful construction features that can be used to compare two other features or perform special calculations. Construction features will show up

More information

TUTORIAL 2. OBJECTIVE: Use SolidWorks/COSMOS to model and analyze a cattle gate bracket that is subjected to a force of 100,000 lbs.

TUTORIAL 2. OBJECTIVE: Use SolidWorks/COSMOS to model and analyze a cattle gate bracket that is subjected to a force of 100,000 lbs. TUTORIAL 2 OBJECTIVE: Use SolidWorks/COSMOS to model and analyze a cattle gate bracket that is subjected to a force of 100,000 lbs. GETTING STARTED: 1. Open the SolidWorks program. 2. Open a new part file.

More information

Worksheets for GCSE Mathematics. Volume and Surface Area. Mr Black's Maths Resources for Teachers GCSE 1-9. Shape

Worksheets for GCSE Mathematics. Volume and Surface Area. Mr Black's Maths Resources for Teachers GCSE 1-9. Shape Worksheets for GCSE Mathematics Volume and Surface Area Mr Black's Maths Resources for Teachers GCSE 1-9 Shape Volume & Surface Area Worksheets Contents Differentiated Independent Learning Worksheets Volume

More information

This is the opening view of blender.

This is the opening view of blender. This is the opening view of blender. Note that interacting with Blender is a little different from other programs that you may be used to. For example, left clicking won t select objects on the scene,

More information

LESSON 14 LEARNING OBJECTIVES. After completing this lesson, you will be able to:

LESSON 14 LEARNING OBJECTIVES. After completing this lesson, you will be able to: LEARNING OBJECTIVES After completing this lesson, you will be able to: 1. Construct 6 Solid model Primitives: Box, Sphere, Cylinder, Cone, Wedge and Torus LESSON 14 CONSTRUCTING SOLID PRIMITIVES AutoCAD

More information

Worksheets for GCSE Mathematics. Volume and Surface Area. mr-mathematics.com Maths Resources for Teachers. Shape

Worksheets for GCSE Mathematics. Volume and Surface Area. mr-mathematics.com Maths Resources for Teachers. Shape Worksheets for GCSE Mathematics Volume and Surface Area mr-mathematics.com Maths Resources for Teachers Shape Volume & Surface Area Worksheets Contents Differentiated Independent Learning Worksheets Volume

More information

Exercise Guide. Published: August MecSoft Corpotation

Exercise Guide. Published: August MecSoft Corpotation VisualCAD Exercise Guide Published: August 2018 MecSoft Corpotation Copyright 1998-2018 VisualCAD 2018 Exercise Guide by Mecsoft Corporation User Notes: Contents 2 Table of Contents About this Guide 4

More information

Autodesk Inventor 2019 and Engineering Graphics

Autodesk Inventor 2019 and Engineering Graphics Autodesk Inventor 2019 and Engineering Graphics An Integrated Approach Randy H. Shih SDC PUBLICATIONS Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org) Visit the

More information

Mr. Whelan Name: Block:

Mr. Whelan Name: Block: Mr. Whelan Name: Block: Geometry/Trig Unit 10 Area and Volume of Solids Notes Packet Day 1 Notes - Prisms Rectangular Prism: How do we find Total Area? Example 1 6cm Find the area of each face: Front:

More information

Tips and tricks. AutoCAD 2010

Tips and tricks. AutoCAD 2010 Tips and tricks AutoCAD 2010 Parametric Drawing Powerful new parametric drawing functionality in AutoCAD 2010 enables you to dramatically increase productivity by constraining drawing objects based on

More information

Introduction to AutoCAD 2012

Introduction to AutoCAD 2012 Introduction to AutoCAD 2012 Alf Yarwood Chapter 13 Exercise 1 1. Open AutoCAD 2012 with a double-click on its shortcut icon in the Windows desktop. 2. Open the template acadiso3d.dwt. 3. Make two new

More information

Reteaching. Solids. These three-dimensional figures are space figures, or solids. A cylinder has two congruent circular bases.

Reteaching. Solids. These three-dimensional figures are space figures, or solids. A cylinder has two congruent circular bases. 9- Solids These three-dimensional figures are space figures, or solids A B C D cylinder cone prism pyramid A cylinder has two congruent circular bases AB is a radius A cone has one circular base CD is

More information

Autodesk Inventor Design Exercise 2: F1 Team Challenge Car Developed by Tim Varner Synergis Technologies

Autodesk Inventor Design Exercise 2: F1 Team Challenge Car Developed by Tim Varner Synergis Technologies Autodesk Inventor Design Exercise 2: F1 Team Challenge Car Developed by Tim Varner Synergis Technologies Tim Varner - 2004 The Inventor User Interface Command Panel Lists the commands that are currently

More information

General Certificate of Secondary Education Higher Tier June 2014

General Certificate of Secondary Education Higher Tier June 2014 Centre Number Surname Candidate Number For Examiner s Use Other Names Candidate Signature Examiner s Initials Pages Mark Mathematics General Certificate of Secondary Education Higher Tier June 2014 43603H

More information

Geometry: Semester 2 Practice Final Unofficial Worked Out Solutions by Earl Whitney

Geometry: Semester 2 Practice Final Unofficial Worked Out Solutions by Earl Whitney Geometry: Semester 2 Practice Final Unofficial Worked Out Solutions by Earl Whitney 1. Wrapping a string around a trash can measures the circumference of the trash can. Assuming the trash can is circular,

More information

Introduction to AutoCAD 2010

Introduction to AutoCAD 2010 Page 1 Introduction to AutoCAD 2010 Alf Yarwood Chapter 18 Exercise 1 1. Open AutoCAD 2010 with a double-click on its shortcut icon in the Windows desktop. 2. Open the template acadiso3d.dwt. 3. Make new

More information

Lesson 2 Constructive Solid Geometry Concept. Parametric Modeling with I-DEAS 2-1

Lesson 2 Constructive Solid Geometry Concept. Parametric Modeling with I-DEAS 2-1 Lesson 2 Constructive Solid Geometry Concept Parametric Modeling with I-DEAS 2-1 2-2 Parametric Modeling with I-DEAS Introduction In the 1980s, one of the main advancements in Solid Modeling was the development

More information

Int 2 Checklist (Unit 1) Int 2 Checklist (Unit 1) Percentages

Int 2 Checklist (Unit 1) Int 2 Checklist (Unit 1) Percentages Percentages Know that appreciation means an increase in value and depreciation means a decrease in value Calculate simple interest over 1 year Calculate simple interest over a certain number of months

More information

Designing with OpenSCAD

Designing with OpenSCAD Designing with OpenSCAD A Young Lady s First Enchiridion Wil Chung Designing with OpenSCAD A Young Lady s First Enchiridion Wil Chung This book is for sale at http://leanpub.com/designing_with_openscad

More information

User Interface Software Projects

User Interface Software Projects User Interface Software Projects Assoc. Professor Donald J. Patterson INF 134 Winter 2013 The author of this work license copyright to it according to the Creative Commons Attribution-Noncommercial-Share

More information

3. Draw the orthographic projection (front, right, and top) for the following solid. Also, state how many cubic units the volume is.

3. Draw the orthographic projection (front, right, and top) for the following solid. Also, state how many cubic units the volume is. PAP Geometry Unit 7 Review Name: Leave your answers as exact answers unless otherwise specified. 1. Describe the cross sections made by the intersection of the plane and the solids. Determine if the shape

More information

Set the current projection to perspective with the given field of view angle (degrees)

Set the current projection to perspective with the given field of view angle (degrees) glman glman is a Windows program to allow a better view into OpenGL shaders. glman is started with: Start All Programs Shaders glman.exe The resulting user interface window looks like this. At the same

More information

This document shows you how to set the parameters for the ModuleWorks Material Removal Simulation.

This document shows you how to set the parameters for the ModuleWorks Material Removal Simulation. Table of Contents Introduction:... 3 Select Profile:... 4 Tool Table - Create Tool(s)... 5 Tool properties:... 5 Tool Color R/G/B:... 6 Simulation Configurations - create stock... 7 What if plugin is greyed

More information

FORMULAE: VOLUMES & SURFACE AREA 1. Cuboid Let, length = l, breadth = b and height = h units. (i) Volume of Cuboid = (l b h) cubic units. (ii) Whole surface of cuboid = (lb + bh + lh) sq.units. (iii) Diagonal

More information

3D Modeling and Design Glossary - Beginner

3D Modeling and Design Glossary - Beginner 3D Modeling and Design Glossary - Beginner Align: to place or arrange (things) in a straight line. To use the Align tool, select at least two objects by Shift left-clicking on them or by dragging a box

More information

3-D Shapes and volume

3-D Shapes and volume 3-D Shapes and Volume Question Paper 1 Level IGCSE Subject Maths Exam Board Edexcel Topic Shape, Space and Measures Sub Topic 3-D Shapes and volume Booklet Question Paper 1 Time Allowed: 57 minutes Score:

More information

Parametric Modeling Design and Modeling 2011 Project Lead The Way, Inc.

Parametric Modeling Design and Modeling 2011 Project Lead The Way, Inc. Parametric Modeling Design and Modeling 2011 Project Lead The Way, Inc. 3D Modeling Steps - Sketch Step 1 Sketch Geometry Sketch Geometry Line Sketch Tool 3D Modeling Steps - Constrain Step 1 Sketch Geometry

More information

Strategy. Using Strategy 1

Strategy. Using Strategy 1 Strategy Using Strategy 1 Scan Path / Strategy It is important to visualize the scan path you want for a feature before you begin taking points on your part. You want to try to place your points in a way

More information

Further Volume and Surface Area

Further Volume and Surface Area 1 Further Volume and Surface Area Objectives * To find the volume and surface area of spheres, cones, pyramids and cylinders. * To solve problems involving volume and surface area of spheres, cones, pyramids

More information

Chapter 10. Creating 3D Objects Delmar, Cengage Learning

Chapter 10. Creating 3D Objects Delmar, Cengage Learning Chapter 10 Creating 3D Objects 2011 Delmar, Cengage Learning Objectives Extrude objects Revolve objects Manipulate surface shading and lighting Map artwork to 3D objects Extrude Objects Extrude & Bevel

More information

COMPUTER AIDED ARCHITECTURAL GRAPHICS FFD 201/Fall 2013 HAND OUT 1 : INTRODUCTION TO 3D

COMPUTER AIDED ARCHITECTURAL GRAPHICS FFD 201/Fall 2013 HAND OUT 1 : INTRODUCTION TO 3D COMPUTER AIDED ARCHITECTURAL GRAPHICS FFD 201/Fall 2013 INSTRUCTORS E-MAIL ADDRESS OFFICE HOURS Özgür Genca ozgurgenca@gmail.com part time Tuba Doğu tubadogu@gmail.com part time Şebnem Yanç Demirkan sebnem.demirkan@gmail.com

More information

9. Volume NOTES.notebook January 19, 2017

9. Volume NOTES.notebook January 19, 2017 Starter - NO Calculators ) Find 20% of 248 2) Find - 5 4 Today's Learning: ) Find the highest common factor of 4 and 49. To revise volume of cubes, cuboids and prisms. 4) Find 5% of 80. 5) Calculate 256

More information

A Short Introduction to POV-Ray

A Short Introduction to POV-Ray A Short Introduction to POV-Ray Peter Fischer, ZITI, Heidelberg University 1 What is POV-Ray? A software to produce 3D images Very easy to use (in my opinion) Simple concept to generate complex shapes

More information

GENIO CAD/CAM software powered by Autodesk technology for parametric programming of boring, routing and edge-banding work centers Genio SPAI SOFTWARE

GENIO CAD/CAM software powered by Autodesk technology for parametric programming of boring, routing and edge-banding work centers Genio SPAI SOFTWARE GENIO CAD/CAM software powered by Autodesk technology for parametric programming of boring, routing and edge-banding work centers Overview is a powerful CAD/CAM system powered by Autodesk 3D environment

More information

Framework for developing schemes of work for the geometry curriculum for ages 11-14

Framework for developing schemes of work for the geometry curriculum for ages 11-14 Framework for developing schemes of work for the geometry curriculum for ages 11-14 CURRICULUM CONTENT TOPIC TEACHING OPPORTUNITIES Classify 2D shapes using angle and side properties. Recognise congruence

More information

FOLLOWING ALONG THE PATH

FOLLOWING ALONG THE PATH FOLLOWING ALONG THE PATH 3D MODULE 18 OBJECTIVES At the completion of the Module you should be able to: Create a solid model by extruding a profile along a predefined pathway. Use the Press/Pull command

More information

4) Finish the spline here. To complete the spline, double click the last point or select the spline tool again.

4) Finish the spline here. To complete the spline, double click the last point or select the spline tool again. 1) Select the line tool 3) Move the cursor along the X direction (be careful to stay on the X axis alignment so that the line is perpendicular) and click for the second point of the line. Type 0.5 for

More information

Computer Graphics 1. Chapter 2 (May 19th, 2011, 2-4pm): 3D Modeling. LMU München Medieninformatik Andreas Butz Computergraphik 1 SS2011

Computer Graphics 1. Chapter 2 (May 19th, 2011, 2-4pm): 3D Modeling. LMU München Medieninformatik Andreas Butz Computergraphik 1 SS2011 Computer Graphics 1 Chapter 2 (May 19th, 2011, 2-4pm): 3D Modeling 1 The 3D rendering pipeline (our version for this class) 3D models in model coordinates 3D models in world coordinates 2D Polygons in

More information

Chapter 1: Symmetry and Surface Area

Chapter 1: Symmetry and Surface Area Chapter 1: Symmetry and Surface Area Name: Section 1.1: Line Symmetry Line of symmetry(or reflection): divides a shape or design into two parts. Can be found using: A mirra Folding Counting on a grid Section

More information

Assignment Guide: Chapter 11 Geometry (L3)

Assignment Guide: Chapter 11 Geometry (L3) Assignment Guide: Chapter 11 Geometry (L3) (136) 11.1 Space Figures and Cross Sections Page 692-693 #7-23 odd, 35 (137) 11.2/11.4 Surface Areas and Volumes of Prisms Page 703-705 #1, 2, 7-9, 11-13, 25,

More information

Supporting planning for shape, space and measures in Key Stage 4: objectives and key indicators

Supporting planning for shape, space and measures in Key Stage 4: objectives and key indicators 1 of 7 Supporting planning for shape, space and measures in Key Stage 4: objectives and key indicators This document provides objectives to support planning for shape, space and measures in Key Stage 4.

More information

Class 4 Geometry. Answer the questions. For more such worksheets visit (1) The given figure has line segments.

Class 4 Geometry. Answer the questions. For more such worksheets visit   (1) The given figure has line segments. ID : in-4-geometry [1] Class 4 Geometry For more such worksheets visit www.edugain.com Answer the questions (1) The given figure has line segments. (2) How many curved lines can be found in the given figure?

More information

Geometry Review Chapter 10: Volume PA Anchors: A3; B2; C1. 1. Name the geometric solid suggested by a frozen juice can.

Geometry Review Chapter 10: Volume PA Anchors: A3; B2; C1. 1. Name the geometric solid suggested by a frozen juice can. Geometry Review Chapter 10: Volume PA Anchors: A; B2; C1 1. Name the geometric solid suggested by a frozen juice can. 2. Name the geometric solid suggested by a beach ball.. Name the geometric solid suggested

More information

SOLIDWORKS 2016 and Engineering Graphics

SOLIDWORKS 2016 and Engineering Graphics SOLIDWORKS 2016 and Engineering Graphics An Integrated Approach Randy H. Shih SDC PUBLICATIONS Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org) Visit the following

More information

Lecture 3 Sections 2.2, 4.4. Mon, Aug 31, 2009

Lecture 3 Sections 2.2, 4.4. Mon, Aug 31, 2009 Model s Lecture 3 Sections 2.2, 4.4 World s Eye s Clip s s s Window s Hampden-Sydney College Mon, Aug 31, 2009 Outline Model s World s Eye s Clip s s s Window s 1 2 3 Model s World s Eye s Clip s s s Window

More information

Study Guide and Intervention

Study Guide and Intervention 1- Study Guide and Intervention Congruent or Similar Solids If the corresponding angles and sides of two solids are congruent, then the solids are congruent. Also, the corresponding faces are congruent

More information

SOL Review April Home work-nallari Math 8 Measurement & Geometry SOL -CAT Questions 13 SOL 8.6a, 8.7a-b, 8.8a-b,8.9,8.10a-b&8.

SOL Review April Home work-nallari Math 8 Measurement & Geometry SOL -CAT Questions 13 SOL 8.6a, 8.7a-b, 8.8a-b,8.9,8.10a-b&8. SOL Review April 18-22 Home work-nallari Math 8 Measurement & Geometry SOL -CAT Questions 13 SOL 8.6a, 8.7a-b, 8.8a-b,8.9,8.10a-b&8.11 Nallari Math 8 Class 1 SOL8.6a 1. If two angles add up to 180 o they

More information

Name: Target 12.2: Find and apply surface of Spheres and Composites 12.2a: Surface Area of Spheres 12.2b: Surface Area of Composites Solids

Name: Target 12.2: Find and apply surface of Spheres and Composites 12.2a: Surface Area of Spheres 12.2b: Surface Area of Composites Solids Unit 12: Surface Area and Volume of Solids Target 12.0: Euler s Formula and Introduction to Solids Target 12.1: Find and apply surface area of solids 12.1a: Surface Area of Prisms and Cylinders 12.1b:

More information

Lesson 10T ~ Three-Dimensional Figures

Lesson 10T ~ Three-Dimensional Figures Lesson 10T ~ Three-Dimensional Figures Name Period Date Use the table of names at the right to name each solid. 1. 2. Names of Solids 3. 4. 4 cm 4 cm Cone Cylinder Hexagonal prism Pentagonal pyramid Rectangular

More information

Acknowledgement INTRODUCTION

Acknowledgement INTRODUCTION Submitted by: 1 Acknowledgement INTRODUCTION Computers are increasingly being used for doing engineering drawings and graphics work because computers allow the graphics designer or the draughtsman to change

More information

move object resize object create a sphere create light source camera left view camera view animation tracks

move object resize object create a sphere create light source camera left view camera view animation tracks Computer Graphics & Animation: CS Day @ SIUC This session explores computer graphics and animation using software that will let you create, display and animate 3D Objects. Basically we will create a 3

More information

Pages do a,c,e only (for questions that have parts)

Pages do a,c,e only (for questions that have parts) use their knowledge of rectangles, parallelograms and triangles to deduce formulae for the area of a parallelogram, and a triangle, from the formula for the area of a rectangle solve problems involving

More information

Solid surface modeling in AutoCAD

Solid surface modeling in AutoCAD Solid surface modeling in AutoCAD Introduction into 3D modeling Managing views of 3D model Coordinate Systems 1 3D model advantages ability to view the whole model looking inside the model collision checking

More information

Animation & Rendering

Animation & Rendering 7M836 Animation & Rendering Introduction, color, raster graphics, modeling, transformations Arjan Kok, Kees Huizing, Huub van de Wetering h.v.d.wetering@tue.nl 1 Purpose Understand 3D computer graphics

More information

3 Dimensional Geometry Chapter Questions. 1. What are the differences between prisms and pyramids? Cylinders and cones?

3 Dimensional Geometry Chapter Questions. 1. What are the differences between prisms and pyramids? Cylinders and cones? 3 Dimensional Geometry Chapter Questions 1. What are the differences between prisms and pyramids? Cylinders and cones? 2. What is volume and how is it found? 3. How are the volumes of cylinders, cones

More information

Name: Period: 2018 Geometry Spring Final Exam Review

Name: Period: 2018 Geometry Spring Final Exam Review 2018 Geometry Spring Final Exam Review 1. Find the number of lunch combinations that can be created if you order a soup, sandwich, drink and dessert. There are 4 soup choices, 5 sandwich choices, 3 drink

More information

Skills Practice Skills Practice for Lesson 2.1

Skills Practice Skills Practice for Lesson 2.1 Skills Practice Skills Practice for Lesson.1 Name Date Backyard Barbecue Introduction to Volume and Surface Area Vocabulary Write the term from the box that best completes each statement. surface area

More information

Fr e e C A D version 0.15

Fr e e C A D version 0.15 Fr e e C A D version 0.15 user manual compiled from articles from http://www.freecadweb.org/wiki Online Help Startpage Welcome to the FreeCAD on-line help This document has been automatically created from

More information

Lesson 9. Three-Dimensional Geometry

Lesson 9. Three-Dimensional Geometry Lesson 9 Three-Dimensional Geometry 1 Planes A plane is a flat surface (think tabletop) that extends forever in all directions. It is a two-dimensional figure. Three non-collinear points determine a plane.

More information

CAD Tutorial 23: Exploded View

CAD Tutorial 23: Exploded View CAD TUTORIAL 23: Exploded View CAD Tutorial 23: Exploded View Level of Difficulty Time Approximately 30 35 minutes Starter Activity It s a Race!!! Who can build a Cube the quickest: - Pupils out of Card?

More information

Extrusion Revolve. ENGR 1182 SolidWorks 02

Extrusion Revolve. ENGR 1182 SolidWorks 02 Extrusion Revolve ENGR 1182 SolidWorks 02 Today s Objectives Creating 3D Shapes from 2D sketches using: Extrusion Revolve SW02 In-Class Activity Extrude a Camera Revolve a Wheel SW02 Out-of-Class Homework

More information

Autodesk Inventor - Basics Tutorial Exercise 1

Autodesk Inventor - Basics Tutorial Exercise 1 Autodesk Inventor - Basics Tutorial Exercise 1 Launch Inventor Professional 2015 1. Start a New part. Depending on how Inventor was installed, using this icon may get you an Inch or Metric file. To be

More information

Maths Year 11 Mock Revision list

Maths Year 11 Mock Revision list Maths Year 11 Mock Revision list F = Foundation Tier = Foundation and igher Tier = igher Tier Number Tier Topic know and use the word integer and the equality and inequality symbols use fractions, decimals

More information

SolidWorks 2013 and Engineering Graphics

SolidWorks 2013 and Engineering Graphics SolidWorks 2013 and Engineering Graphics An Integrated Approach Randy H. Shih SDC PUBLICATIONS Schroff Development Corporation Better Textbooks. Lower Prices. www.sdcpublications.com Visit the following

More information

Introduction to Solid Modeling Parametric Modeling. Mechanical Engineering Dept.

Introduction to Solid Modeling Parametric Modeling. Mechanical Engineering Dept. Introduction to Solid Modeling Parametric Modeling 1 Why draw 3D Models? 3D models are easier to interpret. Simulation under real-life conditions. Less expensive than building a physical model. 3D models

More information

BC is parallel to DE. AB is twice as long as BD. AD = 36 cm and AC = 27 cm. (a) Work out the length of AB. AB =... cm (2 marks)

BC is parallel to DE. AB is twice as long as BD. AD = 36 cm and AC = 27 cm. (a) Work out the length of AB. AB =... cm (2 marks) shape and space 2 higher Question 1 BC is parallel to DE. AB is twice as long as BD. AD = 36 cm and AC = 27 cm. (a) Work out the length of AB. (b) Work out the length of AE. AB =... cm AE =... cm Question

More information

Chapter 1- The Blender Interface

Chapter 1- The Blender Interface Chapter 1- The Blender Interface The Blender Screen Years ago, when I first looked at Blender and read some tutorials I thought that this looked easy and made sense. After taking the program for a test

More information

Multiply using the grid method.

Multiply using the grid method. Multiply using the grid method. Learning Objective Read and plot coordinates in all quadrants DEFINITION Grid A pattern of horizontal and vertical lines, usually forming squares. DEFINITION Coordinate

More information

Advances in MicroStation 3D

Advances in MicroStation 3D MW1HC515 Advances in MicroStation 3D Hands-on class sponsored by the Bentley Institute Presenter: Sam Hendrick, Senior MicroStation Product Consultant Bentley Systems, Incorporated 685 Stockton Drive Exton,

More information

Aptitude Volume and Surface Area. Theory

Aptitude Volume and Surface Area. Theory Aptitude Volume and Surface Area Theory Volume Volume is the amount of space inside a three-dimensional (length, width and height.) object, or its capacity. measured in cubic units. Surfce Area Total area

More information

Introduction to AutoCAD Chapter 15 Exercise 1

Introduction to AutoCAD Chapter 15 Exercise 1 Page 1 Introduction to AutoCAD 2010 Alf Yarwood Chapter 15 Exercise 1 1. Open AutoCAD 2010 with a double-click on its shortcut icon in the Windows desktop. 2. Open the template acadiso3d.dwt. 3. Open the

More information

Tutorial - Steering Wheel

Tutorial - Steering Wheel Tutorial - Steering Wheel (written by Jacob Tremmel, Student at Altair) This tutorial is about modeling (CAD) and rendering of a Steering Wheel with Altair s solidthinking Evolve 9.0. 1 Modeling 1. At

More information

Combination of Solids

Combination of Solids ombination of Solids In combination of solids, 2 or more solids are usually placed one upon the other centrally with their vertical axes coinciding. To draw their isometric projections, we start with the

More information

Outline. COMSOL Multyphysics: Overview of software package and capabilities

Outline. COMSOL Multyphysics: Overview of software package and capabilities COMSOL Multyphysics: Overview of software package and capabilities Lecture 5 Special Topics: Device Modeling Outline Basic concepts and modeling paradigm Overview of capabilities Steps in setting-up a

More information

Q 1 What is a hexogonal prism? 10. Visualizing Solid Shapes Q 2 How many vertices are there in a pyramid with a square base? Q 3 How many edges are there in a cuboid? Q 4 How many edges are there in a

More information

Creating a 2D Geometry Model

Creating a 2D Geometry Model Creating a 2D Geometry Model This section describes how to build a 2D cross section of a heat sink and introduces 2D geometry operations in COMSOL. At this time, you do not model the physics that describe

More information

PRACTICAL GEOMETRY SYMMETRY AND VISUALISING SOLID SHAPES

PRACTICAL GEOMETRY SYMMETRY AND VISUALISING SOLID SHAPES UNIT 12 PRACTICAL GEOMETRY SYMMETRY AND VISUALISING SOLID SHAPES (A) Main Concepts and Results Let a line l and a point P not lying on it be given. By using properties of a transversal and parallel lines,

More information

SOLIDWORKS Flow Simulation Options

SOLIDWORKS Flow Simulation Options SOLIDWORKS Flow Simulation Options SOLIDWORKS Flow Simulation includes an options dialogue window that allows for defining default options to use for a new project. Some of the options included are unit

More information

Measurement 1 PYTHAGOREAN THEOREM. The area of the square on the hypotenuse of a right triangle is equal to the sum of the areas of

Measurement 1 PYTHAGOREAN THEOREM. The area of the square on the hypotenuse of a right triangle is equal to the sum of the areas of Measurement 1 PYTHAGOREAN THEOREM Remember the Pythagorean Theorem: The area of the square on the hypotenuse of a right triangle is equal to the sum of the areas of the squares on the other two sides.

More information

Lathe - DXF Import and IPS Programming

Lathe - DXF Import and IPS Programming Haas Technical Documentation Lathe - DXF Import and IPS Programming Scan code to get the latest version of this document Translation Available INTRODUCTION AutoCAD DXF (Drawing Interchange Format, or Drawing

More information

SimLab 3D PDF Settings. 3D PDF Settings

SimLab 3D PDF Settings. 3D PDF Settings 3D PDF Settings 1 3D PDF Settings dialog enables the user to control the generated 3D PDF file. The dialog can be opened by clicking the PDF settings menu. Page Settings Prepend the following file to 3D

More information

y = 4x + 2, 0 x 1 Name: Class: Date: 1 Find the area of the region that lies under the given curve:

y = 4x + 2, 0 x 1 Name: Class: Date: 1 Find the area of the region that lies under the given curve: Name: Class: Date: 1 Find the area of the region that lies under the given curve: y = 4x + 2, 0 x 1 Select the correct answer. The choices are rounded to the nearest thousandth. 8 Find the volume of the

More information

S8.6 Volume. Section 1. Surface area of cuboids: Q1. Work out the surface area of each cuboid shown below:

S8.6 Volume. Section 1. Surface area of cuboids: Q1. Work out the surface area of each cuboid shown below: Things to Learn (Key words, Notation & Formulae) Complete from your notes Radius- Diameter- Surface Area- Volume- Capacity- Prism- Cross-section- Surface area of a prism- Surface area of a cylinder- Volume

More information

Mensuration: Basic Concepts and Important Formulas

Mensuration: Basic Concepts and Important Formulas Equilateral Triangle: All the three sides are equal and each angle is equal to. Height (Altitude) = 3(side) Isosceles Triangle: Two sides and two angles are equal and altitude drawn on nonequal side bisects

More information

SECTION SIX Teaching/ Learning Geometry. General Overview

SECTION SIX Teaching/ Learning Geometry. General Overview SECTION SIX Teaching/ Learning Geometry General Overview The learning outcomes for Geometry focus on the development of an understanding of the properties of three-dimensional and plane shapes and how

More information

Surface Area and Volume

Surface Area and Volume Surface Area and Volume Level 1 2 1. Calculate the surface area and volume of each shape. Use metres for all lengths. Write your answers to 4 decimal places: a) 0.8 m Surface Area: Volume: b) 1 m 0.2 m

More information

Introduction to Geometry

Introduction to Geometry Introduction to Geometry This course covers the topics outlined below. You can customize the scope and sequence of this course to meet your curricular needs. Curriculum (211 topics + 6 additional topics)

More information

Int 1 Checklist (Unit 1) Int 1 Checklist (Unit 1) Whole Numbers

Int 1 Checklist (Unit 1) Int 1 Checklist (Unit 1) Whole Numbers Whole Numbers Know the meaning of count and be able to count Know that a whole number is a normal counting number such as 0, 1, 2,, 4, Know the meaning of even number and odd number Know that approximating

More information

Section A Solids Grade E

Section A Solids Grade E Name: Teacher Assessment Section A Solids Grade E 1. Write down the name of each of these 3-D shapes, (i) (ii) (iii) Answer (i)... (ii)... (iii)... (Total 3 marks) 2. (a) On the isometric grid complete

More information

UNIT 6 Nets and Surface Area Overhead Slides

UNIT 6 Nets and Surface Area Overhead Slides UNIT 6 Nets and Surface Area Overhead Slides Overhead Slides 6.1 Polygons 6.2 Triangles 6.3 Quadrilaterals 6.4 Name that Shape! 6.5 Drawing Parallelograms 6.6 3-D Shapes 6.7 Cuboid 6.8 Prism 6.9 Plan and

More information

3D AUTOCAD. The view we ve been working in is a top or plan view. From this view even a 3D drawing will appear 2D.

3D AUTOCAD. The view we ve been working in is a top or plan view. From this view even a 3D drawing will appear 2D. 3D AUTOCAD Thus far, we ve looked at tools and operations in 2D with work completed on only the X- and Y- axes. The axes symbol has been present on our screen but we haven t had much use for it. The view

More information