Program Kit. Dream Big. Learn Code. WisCode Literati

Size: px
Start display at page:

Download "Program Kit. Dream Big. Learn Code. WisCode Literati"

Transcription

1 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 by teaching computational thinking, critical decision-making, experimentation, troubleshooting, and cause and effect. We offer various kits and resources to help librarians and educators offer coding and problem-solving programs to their communities. WisCode Literati was started by a group of librarians interested in problem solving, technology, and learning. Coding Physical Objects with OpenSCAD OpenSCAD is a free and open source 3D modeling software that allows users to design objects using a basic programming language. This kit introduces OpenSCAD and works through the creation of a 3D model. Those who have access to a 3D printer can go on to print the model, creating a tangible output for participants. Why? Many coding exercises lead to intangible results. This kit is different because the end result is a model that the participant can visualize as a 3D object and, with the appropriate tools (such as a 3D printer) actually produce a physical object based on the code they have written. Who? This kit could be adapted to work with a variety of ages. The size of the participant group should be limited based on at least: access to computers (ideally, each participant has access to one) and available assistants (attention to detail is very important, so extra sets of eyes can be helpful if there are more than a handful of participants to help). What? Ideally, participants would each have access to a computer with OpenSCAD installed. Current system requirements are: Mac OS X 10.7 or newer, or Windows XP or newer on x86 32/64 bit. To verify current requirements and download OpenSCAD, visit:

2 In order to produce physical objects, you will need access to a 3D printer. Since 3D printing takes a significant amount of time, you may need to run the prints after the activity has completed or invite the participants to come back with their files and do the printing at their convenience. How? After installing OpenSCAD, go to New, and you can immediately start creating objects. At this stage, make sure you have the OpenSCAD cheat sheet open for reference: There is a lot of flexibility in developing a program or activity around OpenSCAD but I suggest a basic structure of teaching and practicing some basic functions and then giving participants time to experiment with combining functions and trying new ones from the cheat sheet. The experimentation phase will benefit from having additional hands-on helpers. Make a cube In the text area to the left, enter: cube(2,2,2); Page 2

3 To preview your model at any time, press F5 or click the preview button. The 2 s in the cube command represent width, depth, and height respectively. Adjust these numbers and see how the model changes when you preview it again. Center your cube By formatting your cube command slightly differently and adding a word, you can center your cube on the origin point (dead center in the preview pane). cube([10,10,10], true); Add a sphere Let s combine the cube with a sphere to make a block with rounded domes on each face. cube([100,100,100], true); sphere(d=120); Preview again. Cool! You did it. But that sphere looks pretty rough. Let s increase the resolution of the sphere to 200 by adding $fn=200 to your sphere command. sphere(d=120, $fn=200); Page 3

4 Making holes Okay, let s try converting the sphere part of our combined shape into empty space. So we ll have a cube-shaped frame with a sphere-shaped empty space in the middle. We can do this with the difference() function, it takes the first shape you give it and then subtracts any subsequent shapes. Pay attention to each character as since the syntax below is slightly different from the above examples. difference() { cube([100,100,100], true); sphere(d=120, $fn=200); } Whoa! It s hollow. Moving stuff around Let s add in another shape and move it to where we want it. On the next line, add: cylinder(20,d=120); 20 here is cylinder height. 120 is cylinder diameter. Page 4

5 Great! Let s do two more things. First, increase the resolution of the cylinder like we did for the sphere. Then, let s move the cylinder up so that it is flush with the top of the cube. We can move objects by using the translate() function. Translate allows you to move things on the x, y, and z axes, in that order. The axes are labeled in the preview pane: In this case, we ll want to move the cylinder up on the z axis. How far? Well, the cube is 100 high and the cylinder starts in the center of it. The cylinder itself is 20 high, which leaves 30 to the top of the cube. difference() { cube([100,100,100], true); sphere(d=120, $fn=200); } translate ([0,0,30]) { cylinder(20, d=120, $fn=200); } PLAY!! At this point you understand the basics about how OpenSCAD works. Experiment with new functions and combining and nesting functions consult the cheat sheet extensively! Page 5

6 Exporting a file for printing The major file standard for 3D printing is the STL (short for stereolithography) file. Most 3D printers work with a piece of software to prepare STL files for printing follow the directions specific to your printing setup. OpenSCAD can export STL files directly using this button: Extras Once again, use the cheat sheet! OpenSCAD User Manual Contributor This kit was created by Joshua Cowles Page 6

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

OpenSCAD. About OpenSCAD. Open SCAD is focused on the CAD (Computer Aided Design) aspects of creating 3D 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

More information

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

TUTORIAL 3DESIGN. Gravotech SAS-Type3

TUTORIAL 3DESIGN. Gravotech SAS-Type3 TUTORIAL 3DESIGN Gravotech SAS-Type3 Satellite Ring Creation time: 45 minutes Level: Beginner This exercise will be done with the following material: Precious metal, Gold 18k White gold 2 A.RING SHANK

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

Maya Lesson 6 Screwdriver Notes & Assessment

Maya Lesson 6 Screwdriver Notes & Assessment Maya Lesson 6 Screwdriver Notes & Assessment Save a new file as: Lesson 6 Screwdriver YourNameInitial Save in your Computer Animation folder. Screwdriver Handle Base Using CVs Create a polygon cylinder

More information

WeDo Mars Rover. YOUR CHALLENGE: Working with a partner, collect rock and soil samples from the Martian crust using your Mars Rover Robot.

WeDo Mars Rover. YOUR CHALLENGE: Working with a partner, collect rock and soil samples from the Martian crust using your Mars Rover Robot. WeDo Mars Rover WHAT: The Lego WeDo is a robotics kit that contains a motor, sensors, and a variety of Lego parts that can construct robots and kinetic sculptures. Program your WeDo creation using the

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

Chapter 25-3D Printing Tools

Chapter 25-3D Printing Tools 3D printing (also called rapid prototyping) has become a hot topic in recent years. They are great tools to bring your 3D designs into the real world and Blender can be a great tool to use to design those

More information

Autodesk Fusion 360 Training: The Future of Making Things Attendee Guide

Autodesk Fusion 360 Training: The Future of Making Things Attendee Guide Autodesk Fusion 360 Training: The Future of Making Things Attendee Guide Abstract After completing this workshop, you will have a basic understanding of editing 3D models using Autodesk Fusion 360 TM to

More information

CIRCLES ON TAKS NAME CLASS PD DUE

CIRCLES ON TAKS NAME CLASS PD DUE CIRCLES ON TAKS NAME CLASS PD DUE 1. On the calculator: Let s say the radius is 2. Find the area. Now let s double the radius to 4 and find the area. How do these two numbers relate? 2. The formula for

More information

Design a Simple Fan in 123D Design

Design a Simple Fan in 123D Design Design a Simple Fan in 123D Design Learn to use 123D Design to make and print this simple fan. 123D Design is a free, powerful, yet simple 3D creation and editing tool. It allows you to design and build

More information

Character Modeling IAT 343 Lab 6. Lanz Singbeil

Character Modeling IAT 343 Lab 6. Lanz Singbeil Character Modeling IAT 343 Lab 6 Modeling Using Reference Sketches Start by creating a character sketch in a T-Pose (arms outstretched) Separate the sketch into 2 images with the same pixel height. Make

More information

Brief 3ds max Shaping Tutorial

Brief 3ds max Shaping Tutorial Brief 3ds max Shaping Tutorial Part1: Power Key Axe Shaft Written by Maestro 1. Creation: Go to top view, create a 6 sided cylinder, 0.1 radius this is the perfect shaft thickness to fit in the hand, so

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

3D printing Workshop Breakdown

3D printing Workshop Breakdown 3D printing Workshop Breakdown Opening Lecture/Remarks (20-30 Minutes) -Introduction to 3D modeling software Overview of what 3D modeling software is Introduction to 123D Design Introduction to 123D Design

More information

UNIT 10: Basic Geometric Shapes

UNIT 10: Basic Geometric Shapes UNIT 10: Basic Geometric Shapes SOLIDCast allows you to create basic geometric shapes that can be part of a casting model. Some simple castings may be created entirely with this type of shape. In other

More information

Modeling a Fluted Column in Google SketchUp

Modeling a Fluted Column in Google SketchUp Architectural columns in ancient Greece, Rome, and even China used flutes - vertical grooves cut along the outside of the cylinder. If you want to create a model of an ancient temple, or perhaps one of

More information

Dice in Google SketchUp

Dice in Google SketchUp A die (the singular of dice) looks so simple. But if you want the holes placed exactly and consistently, you need to create some extra geometry to use as guides. Plus, using components for the holes is

More information

PRINT AT HOME KIT EDITING & PRINTING TIPS

PRINT AT HOME KIT EDITING & PRINTING TIPS PRINT AT HOME KIT EDITING & PRINTING TIPS Step-by-Step Editing + Printing Tips (5 x 7 Invitations) Step 1: Select and open your invite in builder. Replace sample text in the template by highlighting the

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

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

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

ARCHITECTURE & GAMES. A is for Architect Simple Mass Modeling FORM & SPACE. Industry Careers Framework. Applied. Getting Started.

ARCHITECTURE & GAMES. A is for Architect Simple Mass Modeling FORM & SPACE. Industry Careers Framework. Applied. Getting Started. A is for Architect Simple Mass Modeling One of the first introductions to form and space usually comes at a very early age. As an infant, you might have played with building blocks to help hone your motor

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

Here is Instructions on reading your METRIC ruler!

Here is Instructions on reading your METRIC ruler! Name Hr Length Lab Using a metric ruler or meter stick, find the length of all the items in both centimeters, and millimeters. Make sure to include the UNITS on all your answers or they will be wrong!

More information

Software Download. Slicing Settings (Advanced) Software Installation. Software Tutorial. Model Manipulation. Workflow .STL &.OBJ.

Software Download. Slicing Settings (Advanced) Software Installation. Software Tutorial. Model Manipulation. Workflow .STL &.OBJ. User Manual Ver.1 TABLE OF CONTENTS Software Download 2 Slicing Settings (Advanced) 8 DIAMETER Software Installation 2 SPEED TEMPERATURE Software Tutorial 3 Model Manipulation 9 ROTATION Workflow.STL &.OBJ

More information

#1 A: Surface Area of Triangular Prisms Calculate the surface area of the following triangular prisms. You must show ALL of your work.

#1 A: Surface Area of Triangular Prisms Calculate the surface area of the following triangular prisms. You must show ALL of your work. #1 A: Surface Area of Triangular Prisms Calculate the surface area of the following triangular prisms. You must show ALL of your work. (a) (b) (c) (d) (e) #1 B: VOLUME of Triangular Prisms Calculate the

More information

Editing Polygons. Adding material/volume: Extrude. Learning objectives

Editing Polygons. Adding material/volume: Extrude. Learning objectives Learning objectives Be able to: use the Extrude tool to add volume to a polygon know what edge loops are and how to insert edge loops in a polygon cut edges in a polygon know multiple methods of sewing

More information

Figure 1: A picture of a ruler inside a sheet protector. Figure 2: Example of measuring a water drop.

Figure 1: A picture of a ruler inside a sheet protector. Figure 2: Example of measuring a water drop. Equipment needed for the Drops! activity are: 1. A cup with warmer than room temperature water 2. A cup with cooler than room temperature water 3. A pipet or dropper 4. A microencapsulated liquid crystal

More information

Overview. By end of the week:

Overview. By end of the week: Overview By end of the week: - Know the basics of git - Make sure we can all compile and run a C++/ OpenGL program - Understand the OpenGL rendering pipeline - Understand how matrices are used for geometric

More information

6. CAD SOFTWARE. CAD is a really useful tool for every engineer, and especially for all the designers.

6. CAD SOFTWARE. CAD is a really useful tool for every engineer, and especially for all the designers. 6. CAD SOFTWARE CAD is a really useful tool for every engineer, and especially for all the designers. Not only because it makes drawing easier, but because it presents the advantage that if any detail

More information

Answer Key: Three-Dimensional Cross Sections

Answer Key: Three-Dimensional Cross Sections Geometry A Unit Answer Key: Three-Dimensional Cross Sections Name Date Objectives In this lesson, you will: visualize three-dimensional objects from different perspectives be able to create a projection

More information

2. a. approximately cm 3 or 9p cm b. 20 layers c. approximately cm 3 or 180p cm Answers will vary.

2. a. approximately cm 3 or 9p cm b. 20 layers c. approximately cm 3 or 180p cm Answers will vary. Answers Investigation ACE Assignment Choices Problem. Core Other Connections Problem. Core,, Other Applications 7, ; Connections 7 0; unassigned choices from previous problems Problem. Core 7 Other Connections,

More information

Chapter - 13 (Surface areas and Volumes)

Chapter - 13 (Surface areas and Volumes) Chapter - 13 (Surface areas and Volumes) Key Concepts SN. Name Figure Lateral/curved surface area 1 Cuboid Total surface area TSA Volume (V) Symbols use for b = breadth 2. Cube 4s 2 6s 2 s 3 s = side 3.

More information

Actions and Graphs in Blender - Week 8

Actions and Graphs in Blender - Week 8 Actions and Graphs in Blender - Week 8 Sculpt Tool Sculpting tools in Blender are very easy to use and they will help you create interesting effects and model characters when working with animation and

More information

Maya Lesson 3 Temple Base & Columns

Maya Lesson 3 Temple Base & Columns Maya Lesson 3 Temple Base & Columns Make a new Folder inside your Computer Animation Folder and name it: Temple Save using Save As, and select Incremental Save, with 5 Saves. Name: Lesson3Temple YourName.ma

More information

CHAPTER SOL PROBLEMS

CHAPTER SOL PROBLEMS Modified and Animated By Chris Headlee Dec 2011 CHAPTER 11-13 SOL PROBLEMS Super Second-grader Methods SOL Problems; not Dynamic Variable Problems Find formula (rectangular prism) find variables plug in

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

Autodesk Inventor Tips & Tricks Placing Features On

Autodesk Inventor Tips & Tricks Placing Features On 1 Autodesk Inventor Tips & Tricks Placing Features On Cylindrical Shapes The adoption of parametric, feature based solid modeling will present many challenges to the new user as they are confronted for

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

Lesson 24: Surface Area

Lesson 24: Surface Area Student Outcomes Students determine the surface area of three-dimensional figures, those that are composite figures and those that have missing sections. Lesson Notes This lesson is a continuation of Lesson

More information

17.2 Surface Area of Prisms

17.2 Surface Area of Prisms h a b c h a b c Locker LESSON 17. Surface Area of Prisms and Cylinders Texas Math Standards The student is expected to: G.11.C Apply the formulas for the total and lateral surface area of three-dimensional

More information

Geometry Chapter 11 Review. 1 Find the surface area and volume of the figure. Where necessary, express your answer in terms of.

Geometry Chapter 11 Review. 1 Find the surface area and volume of the figure. Where necessary, express your answer in terms of. Geometry hapter 11 Review Name: ate: 1 Find the surface area and volume of the figure. Where necessary, express your answer in terms of. 206 in. 2 ; 192 in. 3 208 in. 2 ; 192 in. 3 212 in. 2 ; 194 in.

More information

MOLD DESIGN. Presented by: Nakul Singh, Tim Ralph, Jamie Curtis and Tim Winsor

MOLD DESIGN. Presented by: Nakul Singh, Tim Ralph, Jamie Curtis and Tim Winsor MOLD DESIGN Presented by: Nakul Singh, Tim Ralph, Jamie Curtis and Tim Winsor Mold Design Three main components: (a) Core This duplicates the inner surface of the model. It is larger than the finished

More information

Introduction to Ardora

Introduction to Ardora Ardora is an authoring software focused mainly on the development of educational content for the Web. Its main purpose is that teachers focus their efforts on the methodological and didactic aspects of

More information

Autodesk Tinkercad Badge Guide

Autodesk Tinkercad Badge Guide Autodesk Tinkercad Badge Guide Abstract: Gain basic understanding of creating objects in Tinkercad; personalize and prepare those objects for TinkerCrafting (Minecraft import) Authors: John Helfen & Lynn

More information

4 TRANSFORMING OBJECTS

4 TRANSFORMING OBJECTS 4 TRANSFORMING OBJECTS Lesson overview In this lesson, you ll learn how to do the following: Add, edit, rename, and reorder artboards in an existing document. Navigate artboards. Select individual objects,

More information

Images from 3D Creative Magazine. 3D Modelling Systems

Images from 3D Creative Magazine. 3D Modelling Systems Images from 3D Creative Magazine 3D Modelling Systems Contents Reference & Accuracy 3D Primitives Transforms Move (Translate) Rotate Scale Mirror Align 3D Booleans Deforms Bend Taper Skew Twist Squash

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

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

ECE 480: Design Team #9 Application Note Designing Box with AutoCAD

ECE 480: Design Team #9 Application Note Designing Box with AutoCAD ECE 480: Design Team #9 Application Note Designing Box with AutoCAD By: Radhika Somayya Due Date: Friday, March 28, 2014 1 S o m a y y a Table of Contents Executive Summary... 3 Keywords... 3 Introduction...

More information

Bonus Ch. 1. Subdivisional Modeling. Understanding Sub-Ds

Bonus Ch. 1. Subdivisional Modeling. Understanding Sub-Ds Bonus Ch. 1 Subdivisional Modeling Throughout this book, you ve used the modo toolset to create various objects. Some objects included the use of subdivisional surfaces, and some did not. But I ve yet

More information

Mathematical Reasoning. Lesson 47: Prisms and Cylinders. LESSON 47: Prisms and Cylinders. D. Legault, Minnesota Literacy Council,

Mathematical Reasoning. Lesson 47: Prisms and Cylinders. LESSON 47: Prisms and Cylinders. D. Legault, Minnesota Literacy Council, LESSON 47: Prisms and Cylinders Weekly Focus: prisms, cylinders Weekly Skill: calculate area and volume Lesson Summary: For the warm up, students will solve a problem about the earth and the moon. In Activity

More information

Solution Guide for Chapter 21

Solution Guide for Chapter 21 Solution Guide for Chapter 21 Here are the solutions for the Doing the Math exercises in Girls Get Curves! DTM from p. 74-75 2. Find the surface area of a pyramid with slant height 5 in, whose Base is

More information

Simple Glass TNT Molecule Tutorial

Simple Glass TNT Molecule Tutorial Simple Glass TNT Molecule Tutorial Quinten Kilborn Today, I ll be showing you how to make an awesome looking glass TNT molecule. I was messing with glass textures and found that it makes an awesome science

More information

PRINT A 3D MODEL PLANE

PRINT A 3D MODEL PLANE PRINT A 3D MODEL PLANE STEP BY STEP INSTRUCTIONS ON HOW TO PREPARE A 3D MODEL PLANE FOR 3D PRINTING USING TINKERCAD CONTENT: BACKGROUND Page 2 1. 3D Printing What s that? 2 PREPARATION Pages 2-12 2. Let

More information

Lesson 26: Volume of Composite Three-Dimensional Objects

Lesson 26: Volume of Composite Three-Dimensional Objects Lesson 26: Volume of Composite Three-Dimensional Objects Student Outcomes Students compute volumes of three-dimensional objects composed of right prisms by using the fact that volume is additive. Lesson

More information

PDA Trainer Certification Process V 1.0

PDA Trainer Certification Process V 1.0 PDA Trainer Certification Process V 1.0 ~ 1 ~ Index Introduction to the Certification Process... 3 Certification Process Steps... 4 Description of the Certification Process Steps... 5 A - PDA Trainer Profile...

More information

Introduction. File preparation

Introduction. File preparation White Paper Design and printing guidelines Introduction A print job can be created in either of the following ways: NOTE: HP SmartStream 3D Build Manager supports STL and 3MF files. By using the HP SmartStream

More information

Objective: Find and name three-dimensional shapes including cone and

Objective: Find and name three-dimensional shapes including cone and Lesson 3 1 5 Lesson 3 Objective: Suggested Lesson Structure Fluency Practice Application Problem Concept Development Student Debrief Total Time (10 minutes) (5 minutes) (35 minutes) (10 minutes) (60 minutes)

More information

Volume

Volume Volume Volume is a measure of how much space a three-dimensional object takes up. Area only looked at surface; we counted how many little flat squares could fit on a surface. Volume measures how many 1

More information

EXPERIMENT #5 Physical Properties and Measurement: Density

EXPERIMENT #5 Physical Properties and Measurement: Density OBJECTIVES: EXPERIMENT #5 Physical Properties and Measurement: Density Determine the density of a liquid, a regular solid, and/or an irregular solid Determine the volume of the regular solid by calculation

More information

Determine the surface area of the following square-based pyramid. Determine the volume of the following triangular prism. ) + 9.

Determine the surface area of the following square-based pyramid. Determine the volume of the following triangular prism. ) + 9. MPM 1D Name: Unit: Measurement Date: Calculating and of Three Dimensional Figures Use the Formula Sheet attached to help you to answer each of the following questions. Three problems are worked out for

More information

UV Mapping to avoid texture flaws and enable proper shading

UV Mapping to avoid texture flaws and enable proper shading UV Mapping to avoid texture flaws and enable proper shading Foreword: Throughout this tutorial I am going to be using Maya s built in UV Mapping utility, which I am going to base my projections on individual

More information

1.1: Introduction to Fusion 360

1.1: Introduction to Fusion 360 .: Introduction to Fusion 360 Fusion 360 is a cloud- based CAD/CAM tool for collaborative product development. The tools in Fusion enable exploration and iteration on product ideas and collaboration within

More information

Scientific Graphing in Excel 2013

Scientific Graphing in Excel 2013 Scientific Graphing in Excel 2013 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.

More information

Dremel Digilab 3D Slicer Software

Dremel Digilab 3D Slicer Software Dremel Digilab 3D Slicer Software Dremel Digilab 3D Slicer prepares your model for 3D printing. For novices, it makes it easy to get great results. For experts, there are over 200 settings to adjust to

More information

Polyhedron Nets. National Standards (NCTM) 21 st Century Skills. Middle School

Polyhedron Nets. National Standards (NCTM) 21 st Century Skills. Middle School Polyhedron Nets Middle School National Standards (NCTM) 21 st Century Skills Instructional programs from prekindergarten through grade 12 in Geometry should enable each and every student to Analyze characteristics

More information

Demonstration -3D Printer -CNC Milling Machine

Demonstration -3D Printer -CNC Milling Machine Demonstration -3D Printer -CNC Milling Machine ENGINEERING LABORATORY EE-100 Lahore University of Management Sciences Electrical Engineering Department, SSE Non-conventional Manufacturing 3D Printing A

More information

Fair Game Review. Chapter 15. Name Date. Find the area of the figure ft

Fair Game Review. Chapter 15. Name Date. Find the area of the figure ft Name Date Chapter 15 Fair Game Review Find the area of the figure. 1. 3 m 3 m 2. 5 m 7 m 14 m 9 m 3 m 3. 4 in. 1 in. 4. 12 in. 5 in. 9 in. 12 in. 7 in. 12 in. 5. 6. 5 ft 3 ft 15 ft 1 ft 4 in. 10 in. 8

More information

CONVEYOR BASE TUTORIAL. An Introduction to DriveWorksXpress

CONVEYOR BASE TUTORIAL. An Introduction to DriveWorksXpress CONVEYOR BASE TUTORIAL An Introduction to DriveWorksXpress CONTENTS INTRODUCTION TO DRIVEWORKSXPRESS... 3 About the Tutorial... 3 Getting Started... 4 DRIVEWORKSXPRESS NAVIGATION BAR... 5 REGISTRATION

More information

COS 116 The Computational Universe Laboratory 10: Computer Graphics

COS 116 The Computational Universe Laboratory 10: Computer Graphics COS 116 The Computational Universe Laboratory 10: Computer Graphics As mentioned in lecture, computer graphics has four major parts: imaging, rendering, modeling, and animation. In this lab you will learn

More information

CADCAM using Powermill

CADCAM using Powermill CADCAM using Powermill In this exercise you will create the toolpaths necessary to machine the Cowling model. Create a folder on your h: called Powermill. Inside this create a folder called cowling2009.

More information

Sect Volume. 3 ft. 2 ft. 5 ft

Sect Volume. 3 ft. 2 ft. 5 ft 199 Sect 8.5 - Volume Objective a & b: Understanding Volume of Various Solids The Volume is the amount of space a three dimensional object occupies. Volume is measured in cubic units such as in or cm.

More information

Full Screen Layout. Main Menu Property-specific Options. Object Tools ( t ) Outliner. Object Properties ( n ) Properties Buttons

Full Screen Layout. Main Menu Property-specific Options. Object Tools ( t ) Outliner. Object Properties ( n ) Properties Buttons Object Tools ( t ) Full Screen Layout Main Menu Property-specific Options Object Properties ( n ) Properties Buttons Outliner 1 Animation Controls The Create and Add Menus 2 The Coordinate and Viewing

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

3D Printing Action Heroes

3D Printing Action Heroes Outline Previously: 3D Sculpting Action Heroes Generating base models Slicing into parts & adding joints Customizing via 3D sculpting tools Today: Recap meshmixer & finish models Preparing parts for 3D

More information

You may use a calculator for these practice questions. You may

You may use a calculator for these practice questions. You may 660 Math Smart Practice Questions You may use a calculator for these practice questions. You may not know all the math to complete these practice questions yet, but try to think them through! 1. Eric lives

More information

The Cube and its Symmetries

The Cube and its Symmetries The Cube and its Symmetries This workshop is designed to show Y8/9 children how symmetry operations interrelate. We take the cube as our example. Administration In your area is a visualiser, an OHP and

More information

Algebra 2 Semester 1 (#2221)

Algebra 2 Semester 1 (#2221) Instructional Materials for WCSD Math Common Finals The Instructional Materials are for student and teacher use and are aligned to the 2016-2017 Course Guides for the following course: Algebra 2 Semester

More information

Analog Clock. High School Math Alignment. Level 2 CSTA Alignment. Description

Analog Clock. High School Math Alignment. Level 2 CSTA Alignment. Description Analog Clock High School Math Alignment Domain: Geometry Cluster: Apply geometric concepts in modelling situations Standard: CCSS.MATH.CONTENT.HSG.MG.A.1 Use geometric shapes, their measures, and their

More information

Lesson 23: Surface Area

Lesson 23: Surface Area Lesson 23 Lesson 23: Classwork Opening Exercise Calculate the surface area of the square pyramid. Example 1 a. Calculate the surface area of the rectangular prism. Lesson 23: S.142 Lesson 23 b. Imagine

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

11 4 Volumes of Prisms and Cylinders Focused Learning Target: CA Standard(s): Vocabulary:

11 4 Volumes of Prisms and Cylinders Focused Learning Target: CA Standard(s): Vocabulary: Ch 11 : Surface Area and Volume 11 4 Volumes of Prisms and Cylinders 11 5 Volumes of Pyramids and Cones 11 6 Surface Areas and Volumes of Spheres 11 7 Areas and Volumes of Similar Solids 11 4 Volumes of

More information

Computer requirements Provel Carve 2.0 is supported on Windows and Mac OSX ver 10.4 or newer.

Computer requirements Provel Carve 2.0 is supported on Windows and Mac OSX ver 10.4 or newer. Provel Carve 2.0 Userʼs Guide Purpose Provel Carve is a tool to create and send motion files to a Provel Carver. It allows the user to specify carve parameters and base options to optimize the quality

More information

CraftBot in the classroom

CraftBot in the classroom CraftBot in the classroom THE 3D PRINTER IN SCHOOL A NEW CHAPTER IN EDUCATION expansion of a few hundred years ago changed education fundamentally. Now we face a new and significant development in the

More information

Copyright 2013 A+ Interactive MATH (an A+ TutorSoft Inc. company), All Rights Reserved.

Copyright 2013 A+ Interactive MATH (an A+ TutorSoft Inc. company), All Rights Reserved. www.aplustutorsoft.com Page 1 of 20 Dimensions of Shapes Lesson, Worksheet & Solution Guide Release 7 A+ Interactive Math (By A+ TutorSoft, Inc.) Email: info@aplustutorsoft.com www.aplustutorsoft.com www.aplustutorsoft.com

More information

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface CHAPTER 1 Finding Your Way in the Inventor Interface COPYRIGHTED MATERIAL Understanding Inventor s interface behavior Opening existing files Creating new files Modifying the look and feel of Inventor Managing

More information

Geometry Lesson Polyhedron Nets. National Standards

Geometry Lesson Polyhedron Nets. National Standards Geometry Lesson Polyhedron Nets National Standards Instructional programs for Algebra grades 6 th -8 th should enable all students to: Precisely describe, classify, and understand relationships among types

More information

Assignment Volume and Surface Area of Solids

Assignment Volume and Surface Area of Solids Assignment Volume and Surface Area of Solids 1. (a) The diagonal of a cube is 16 3 cm. Find its surface area and volume. (b) The capacity of a cylindrical tank is 1848 m 3 and the diameter of its base

More information

Newsletters Still Relevant

Newsletters Still Relevant Newsletters Still Relevant There has been a growth of mass marketing instant communications methods such as Instagram, Snap Chat and the like, but there is still a place for the well-written newsletter.

More information

EDEXCEL NATIONAL CERTIFICATE UNIT 4 MATHEMATICS FOR TECHNICIANS OUTCOME 1

EDEXCEL NATIONAL CERTIFICATE UNIT 4 MATHEMATICS FOR TECHNICIANS OUTCOME 1 EDEXCEL NATIONAL CERTIFICATE UNIT 4 MATHEMATICS FOR TECHNICIANS OUTCOME 1 TUTORIAL 4 AREAS AND VOLUMES Determine the fundamental algebraic laws and apply algebraic manipulation techniques to the solution

More information

3.6: First Person Computer Games

3.6: First Person Computer Games 3.6: First Person Computer Games Projections of 3-D Objects Alice is an educational software program that uses a 3-D environment to teach students programming. If you have not done so already, please download

More information

COMP 175 COMPUTER GRAPHICS. Ray Casting. COMP 175: Computer Graphics April 26, Erik Anderson 09 Ray Casting

COMP 175 COMPUTER GRAPHICS. Ray Casting. COMP 175: Computer Graphics April 26, Erik Anderson 09 Ray Casting Ray Casting COMP 175: Computer Graphics April 26, 2018 1/41 Admin } Assignment 4 posted } Picking new partners today for rest of the assignments } Demo in the works } Mac demo may require a new dylib I

More information

S206E Lecture 3, 5/15/2017, Rhino 2D drawing an overview

S206E Lecture 3, 5/15/2017, Rhino 2D drawing an overview Copyright 2017, Chiu-Shui Chan. All Rights Reserved. S206E057 Spring 2017 Rhino 2D drawing is very much the same as it is developed in AutoCAD. There are a lot of similarities in interface and in executing

More information

HTML/CSS Lesson Plans

HTML/CSS Lesson Plans HTML/CSS Lesson Plans Course Outline 8 lessons x 1 hour Class size: 15-25 students Age: 10-12 years Requirements Computer for each student (or pair) and a classroom projector Pencil and paper Internet

More information

5 Subdivision Surfaces

5 Subdivision Surfaces 5 Subdivision Surfaces In Maya, subdivision surfaces possess characteristics of both polygon and NURBS surface types. This hybrid surface type offers some features not offered by the other surface types.

More information

A laser beam is then directed into the liquid, (guided by the 3d file you ve made), solidifying the areas it comes in contact with.

A laser beam is then directed into the liquid, (guided by the 3d file you ve made), solidifying the areas it comes in contact with. 1 Stereolithography is a technique where the parts are manufactured by building up successive thin layers of hardening resin. The process takes place in a large tank, and begins when a layer of liquid

More information

Tips for modeling in Sketchup

Tips for modeling in Sketchup Tips for modeling in Sketchup Make your model Solid in Sketchup to be 3D Printable Models must be Solid to be 3D printable. This is by far the most common problem beginners have when modeling for 3D printing.

More information

Chapter 14 Mensuration Surface Area and Volume Conversion of one solid into another solid Some time we have to melt one solid and convert it to another shap. For example we have to convert a metallic sphere

More information