Building Blocks Artist Driven Procedural Buildings. James Golding - Epic Games

Size: px
Start display at page:

Download "Building Blocks Artist Driven Procedural Buildings. James Golding - Epic Games"

Transcription

1 Building Blocks Artist Driven Procedural Buildings James Golding - Epic Games

2 Who Am I Started as Field Engineer at MathEngine Oxford, UK Senior Programmer at Epic Games Raleigh, NC, USA Worked here for nearly 8 years Physics, animation, tools, gameplay Shipped some games Unreal Tournament 2003, 2004, UT3, Gears of War 1 & 2

3 Who Is This Talk For Programmers Level Designers Technical Artists There is no code, I promise! Anyone who thinks about building big cities for games

4 Our Goals Good looking buildings with high visual density Easily change shape and size for gameplay Automatically generate LODs

5 Not Our Goals We are not interested in generating entire city with one button, or even an entire building, but decorating a building defined by designer.

6 Existing Approaches Use level geometry tools, cover with meshes Lots of work placing meshes Painful to change meshing Build custom building meshes Hard to adjust for gameplay Each one needs LOD custom made Simple shapes with tiling material Did not meet our visual bar

7 New Approach Designer creates 'high level' description of building Artists build a library of rectangular, modular, facade meshes Artist creates 'ruleset' which describes how facade pieces are used Initial idea from "Procedural Modeling of Buildings" by Müller et al. (2006, ETH Zurich)

8 Defining Building Shape Collection of simple shapes

9 Defining Building Shape Apply Ruleset to group

10 Defining Building Shape Can easily modify building at any time

11 Breaking It Down Starting with a reference photo

12 Breaking It Down Artist breaks it into modular meshes

13 Breaking It Down Procedural system places meshes

14 Scopes A scope is a 2D rectangle Location Orientation Dimensions Tool takes 3D building shape and extracts set of scopes

15 Extracting Rectangles Certain areas are not rectangular Walls - if roof is not flat Roof - if building plan is non-rectangular We make simple polygons to fill holes Don t extract scope from roof always just big polygon

16 Extracting Rectangles

17 Rules? Each rule can do one of two things: Split a scope into smaller scopes Place mesh that fills the scope area on the building facade Forms a graph

18 Rules? A grammar for describing facades Context Free Graph of nodes good for a graphical tool More visual = happy artists

19 The Rules

20 Mesh Rule Artist specifies What mesh X and Z extent that it fills Easy to scale and place instance scale = desired size/defined size

21 Mesh Rule Initial concerns over scaling of artist built meshes System lets you specify which meshes are scaled and which are not Generally not visually noticeable with buildingtype meshes Needs to avoid tiny doors etc

22 Repeat Rule Choose an axis (X or Z) Break up scope along that axis into equal size pieces Ensure no piece along axis is larger than defined maximum size Generates varying number of new scopes, depending on Generates varying number of new scopes, depending on building size

23 Repeat Rule

24 Split Rule Designer specifies axis and number of scopes to break into. Each split can be fixed size or variable. Always require one of the splits to be variable. If scope is too small to fit in fixed size areas, must discard them. Similar to windowing toolkits (wxsizer etc)

25 Split Rule

26 Alternate Rule Hard to achieve ABABA 'fence post' layout with just repeat and split. A is fixed, B is stretchy.

27 Alternate Rule

28 Occlusion Rule Quickly find that meshes are being placed where not seen Needed for intersections between buildings to look good

29 Occlusion Rule Output is 'clear', 'blocked' or 'partial' Don't place mesh if 'blocked' Can choose different mesh depending on 'clear' and 'partial' Initially this was a separate rule node Used so frequently, we included this into the Mesh rule

30 Occlusion Rule

31 Top/Bottom Rule Don't want shop fronts at the bottom of every scope in building Performs different actions if bottom of scope is at bottom of entire building Does same thing for top (e.g. large trim at very top)

32 Top/Bottom Rule

33 Random Rule Does not resize scope Executes to N out of the M possible child Rules Allows meshes on top of each other E.g. a Window mesh with random AC unit and/or awning.

34 Random Rule Composite regions like random shopfronts

35 Random Rule

36 Random Rule

37 Quad Rule Sometimes you DO want a tiling material Simple variation of Mesh Rule Adjusts UVs to tile base on scope size Same logic as Repeat Rule Second non-tiling UV channel

38 Quad Node

39 Sub Ruleset Allow a Ruleset to refer to other Rulesets Complicated Rulesets can be reused. Terrifying prospect of recursive architecture!

40 Size Rule Simple choice based on dimension Useful for fixing squeezing

41 Size Rule Without Size Rule With Size Rule

42 Variations

43 Variations Each side of a building may need to look different

44 Variations Initially allowed Level Designers to assign rulesets per-face Corners usually looked bad Artists had no control over ruleset Artists had no control over ruleset combinations

45 Variations Each face of a building volume can have a variation name set on it Special rule node uses that to decide which output to fire Level designer can choose front, side etc. Ruleset designer can ensure they all match nicely

46 Variations Context menu on each face offers variations created by artist

47 Variations

48 Corners

49 Trim And Corners Making trim work around corners is one of the hardest parts We came up with three approaches to We came up with three approaches to decorating corners

50 Trim And Corners Build Rulesets with flat edges Only really possible with modern architecture

51 Trim And Corners Cover corner with mesh, at average angle between faces LDs did this manually on previous games

52 Trim And Corners Building custom corner pieces use custom Rule to pick correct piece based on angle lots of custom meshes need making limit LD to certain angles

53 Corner Rule Each scope owns its left edge Use angle to scope on left to pick mesh Asks scope to right how much space to leave there

54 Corner Rule Allows mixing rule sets with different corner sizes

55 Corner Rule This requires edge<->scope map Array of top level scopes Array of edges I am scope 3 s left edge and scope 12 s right edge This is my start and end location This is my angle Build this map as part of scope extraction

56 Corner Rule Requires each edge to only have 2 scopes

57 Corner Rule Split entire building at each roof level

58 Corner Rule Also produces pleasing architecture

59 Corner Rule

60 Other Features

61 Curved Corners Roof From each vertex of roof poly, can find its Corner Rule Add options to Corner Rule to describe corner shape Use that to reshape the corner

62 Roof

63 Floor Option to run rules on top of big floor poly

64 Player Collision Can use the simple 'building volume Fast Smooth Certain meshes can be flagged as having collision in addition to this

65 Parameters Expose parameters in shaders applied to building pieces Wall Diffuse and Specular Color Window Diffuse and Specular Color Gives more variation for no memory cost

66 Rendering Approach Buildings tend to be made of many copies of a few meshes trim, window frame, columns Lots of draw calls Initially tried merging meshes to reduce sections Huge vertex/index buffers!

67 Rendering Approach Instanced rendering! Different on all 3 platforms Need to duplicate index buffer etc. Trade-off index buffer memory for speed

68 Window Interiors

69 Window Interiors Three textures - one for each depth

70 Window Interiors Use mask to offset texture UV based on cam vector

71 Window Interiors Pack all masks into one texture

72 LOD

73 Building LOD Low LOD mesh is automatically created Mesh the same shape as the volume used to construct building Renders high detail meshes into texture All faces atlassed into one texture Low LOD mesh is always loaded Textures can stream in different mip levels

74 Building LOD

75 Windows Buildings all have glass windows reflective with cubemaps LOD needs a mask for reflective windows losing reflection creates very noticeable pop

76 Windows We render 3 passes: Diffuse Window Mask Lighting

77 Windows Diffuse + Window Mask Mask stored as 1 bit alpha in DXT1 Lighting Lower resolution

78 Windows Advantages to 2 texture approach: Lighting texture can be lower resolution Lets us light cubemap glass areas Allows building instances Share Diffuse but unique Lighting Reduces variety of buildings, but uses less LOD texture memory

79 Building LOD

80 Transitions Using dither approach to transition Objects attached to building change when building does A/C units, pipes, signs etc Captured by render-to-texture process

81 Transitions

82 Transitions

83 LOD Quad Idea for automatic intermediate LOD All meshes after rule collapse to single quad Quad uses LOD texture

84 LOD Quad

85 What s Next

86 What s Next More orthogonal variation channels Decal support within ruleset Apply rules to triangular regions Interiors Transition (doors) Collision

87 Conclusion

88 Conclusion Good looking buildings with high visual density Easily change shape and size for gameplay Automatically generate LODs

89 Conclusion Keeps artist and level designer workflows from colliding One change to a ruleset, the whole city changes Artists willing to learn a crazy new system and push it are invaluable and awesome Thanks Pete

90 Conclusion Rulesets everywhere!

91

Blender Notes. Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine

Blender Notes. Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine Blender Notes Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine The Blender Game Engine This week we will have an introduction to the Game Engine build

More information

Alphacam Art combines Vectric s Aspire artistic design software with the market leading Alphacam manufacturing software.

Alphacam Art combines Vectric s Aspire artistic design software with the market leading Alphacam manufacturing software. Alphacam Art Alphacam Art - CNC Routing For Artists & Ideal Jewellery Cad Cam Software Alphacam Art combines Vectric s Aspire artistic design software with the market leading Alphacam manufacturing software.

More information

TABLE OF CONTENTS. INTRODUCTION... 5 Advance Concrete... 5 Where to find information?... 6 INSTALLATION... 7 STARTING ADVANCE CONCRETE...

TABLE OF CONTENTS. INTRODUCTION... 5 Advance Concrete... 5 Where to find information?... 6 INSTALLATION... 7 STARTING ADVANCE CONCRETE... Starting Guide TABLE OF CONTENTS INTRODUCTION... 5 Advance Concrete... 5 Where to find information?... 6 INSTALLATION... 7 STARTING ADVANCE CONCRETE... 7 ADVANCE CONCRETE USER INTERFACE... 7 Other important

More information

The Car Tutorial Part 1 Creating a Racing Game for Unity

The Car Tutorial Part 1 Creating a Racing Game for Unity The Car Tutorial Part 1 Creating a Racing Game for Unity Introduction 3 We will show 3 Prerequisites 3 We will not show 4 Part 1: Assembling the Car 5 Adding Collision 6 Shadow settings for the car model

More information

Character Creation You can customize a character s look using Mixamo Fuse:

Character Creation You can customize a character s look using Mixamo Fuse: Using Mixamo Fuse, Mixamo, and 3ds Max, you can create animated characters for use with FlexSim. Character Creation You can customize a character s look using Mixamo Fuse: After creating the character,

More information

What s New V 11. Preferences: Parameters: Layout/ Modifications: Reverse mouse scroll wheel zoom direction

What s New V 11. Preferences: Parameters: Layout/ Modifications: Reverse mouse scroll wheel zoom direction What s New V 11 Preferences: Reverse mouse scroll wheel zoom direction Assign mouse scroll wheel Middle Button as Fine tune Pricing Method (Manufacturing/Design) Display- Display Long Name Parameters:

More information

Intermediate Tutorials Modeling - Trees. 3d studio max. 3d studio max. Tree Modeling. 1.2206 2006 Matthew D'Onofrio Page 1 of 12

Intermediate Tutorials Modeling - Trees. 3d studio max. 3d studio max. Tree Modeling. 1.2206 2006 Matthew D'Onofrio Page 1 of 12 3d studio max Tree Modeling Techniques and Principles 1.2206 2006 Matthew D'Onofrio Page 1 of 12 Modeling Trees Tree Modeling Techniques and Principles The era of sprites and cylinders-for-trunks has passed

More information

Modern Graphics Engine Design. Sim Dietrich NVIDIA Corporation sim.dietrich@nvidia.com

Modern Graphics Engine Design. Sim Dietrich NVIDIA Corporation sim.dietrich@nvidia.com Modern Graphics Engine Design Sim Dietrich NVIDIA Corporation sim.dietrich@nvidia.com Overview Modern Engine Features Modern Engine Challenges Scene Management Culling & Batching Geometry Management Collision

More information

Making natural looking Volumetric Clouds In Blender 2.48a

Making natural looking Volumetric Clouds In Blender 2.48a I think that everyone using Blender has made some trials about making volumetric clouds. The truth is that a kind of volumetric clouds is already available in Blender for a long time, thanks to the 3D

More information

IT 386: 3D Modeling and Animation. Review Sheet. Notes from Professor Nersesian s IT 386: 3D Modeling and Animation course

IT 386: 3D Modeling and Animation. Review Sheet. Notes from Professor Nersesian s IT 386: 3D Modeling and Animation course IT 386: 3D Modeling and Animation Review Sheet Sources: Notes from Professor Nersesian s IT 386: 3D Modeling and Animation course Notes from CannedMushrooms on YouTube Notes from Digital Tutors tutorial

More information

Wednesday, March 30, 2011 GDC 2011. Jeremy Ernst. Fast and Efficient Facial Rigging(in Gears of War 3)

Wednesday, March 30, 2011 GDC 2011. Jeremy Ernst. Fast and Efficient Facial Rigging(in Gears of War 3) GDC 2011. Jeremy Ernst. Fast and Efficient Facial Rigging(in Gears of War 3) Fast and Efficient Facial Rigging in Gears of War 3 Character Rigger: -creates animation control rigs -creates animation pipeline

More information

Welcome to CorelDRAW, a comprehensive vector-based drawing and graphic-design program for the graphics professional.

Welcome to CorelDRAW, a comprehensive vector-based drawing and graphic-design program for the graphics professional. Workspace tour Welcome to CorelDRAW, a comprehensive vector-based drawing and graphic-design program for the graphics professional. In this tutorial, you will become familiar with the terminology and workspace

More information

QUICK REFERENCE: ADOBE ILLUSTRATOR CS2 AND CS3 SECTION 1: CS3 TOOL BOX: PAGE 2 SECTION 2: CS2 TOOL BOX: PAGE 11

QUICK REFERENCE: ADOBE ILLUSTRATOR CS2 AND CS3 SECTION 1: CS3 TOOL BOX: PAGE 2 SECTION 2: CS2 TOOL BOX: PAGE 11 QUICK REFERENCE, ADOBE ILLUSTRATOR, PAGE 1 QUICK REFERENCE: ADOBE ILLUSTRATOR CS2 AND CS3 CS2 SECTION 1: CS3 TOOL BOX: PAGE 2 SECTION 2: CS2 TOOL BOX: PAGE 11 SECTION 3: GENERAL CONCEPTS: PAGE 14 SELECTING

More information

HowTo Rhino & ICEM. 1) New file setup: choose Millimeter (automatically converts to Meters if imported to ICEM)

HowTo Rhino & ICEM. 1) New file setup: choose Millimeter (automatically converts to Meters if imported to ICEM) HowTo Rhino & ICEM Simple 2D model 1) New file setup: choose Millimeter (automatically converts to Meters if imported to ICEM) 2) Set units: File Properties Units: Model units: should already be Millimeters

More information

Architectural design. Jeff Livingston. About the author. About the author

Architectural design. Jeff Livingston. About the author. About the author Architectural design Jeff Livingston About the author About the author Jeff Livingston was born in Lompoc, California in 1976. An avid swimmer and aspiring architect, Jeff joined the University of Texas

More information

GPU Architecture. Michael Doggett ATI

GPU Architecture. Michael Doggett ATI GPU Architecture Michael Doggett ATI GPU Architecture RADEON X1800/X1900 Microsoft s XBOX360 Xenos GPU GPU research areas ATI - Driving the Visual Experience Everywhere Products from cell phones to super

More information

My Materials. In this tutorial, we ll examine the material settings for some simple common materials used in modeling.

My Materials. In this tutorial, we ll examine the material settings for some simple common materials used in modeling. Course: 3D Design Title: My Materials Blender: Version 2.6X Level: Beginning Author; Neal Hirsig (nhirsig@tufts.edu) (May 2012) My Materials In this tutorial, we ll examine the material settings for some

More information

INTRODUCTION TO RENDERING TECHNIQUES

INTRODUCTION TO RENDERING TECHNIQUES INTRODUCTION TO RENDERING TECHNIQUES 22 Mar. 212 Yanir Kleiman What is 3D Graphics? Why 3D? Draw one frame at a time Model only once X 24 frames per second Color / texture only once 15, frames for a feature

More information

Optimizing AAA Games for Mobile Platforms

Optimizing AAA Games for Mobile Platforms Optimizing AAA Games for Mobile Platforms Niklas Smedberg Senior Engine Programmer, Epic Games Who Am I A.k.a. Smedis Epic Games, Unreal Engine 15 years in the industry 30 years of programming C64 demo

More information

An introduction to 3D draughting & solid modelling using AutoCAD

An introduction to 3D draughting & solid modelling using AutoCAD An introduction to 3D draughting & solid modelling using AutoCAD Faculty of Technology University of Plymouth Drake Circus Plymouth PL4 8AA These notes are to be used in conjunction with the AutoCAD software

More information

Roof Tutorial. Chapter 3:

Roof Tutorial. Chapter 3: Chapter 3: Roof Tutorial The majority of Roof Tutorial describes some common roof styles that can be created using settings in the Wall Specification dialog and can be completed independent of the other

More information

Image Processing and Computer Graphics. Rendering Pipeline. Matthias Teschner. Computer Science Department University of Freiburg

Image Processing and Computer Graphics. Rendering Pipeline. Matthias Teschner. Computer Science Department University of Freiburg Image Processing and Computer Graphics Rendering Pipeline Matthias Teschner Computer Science Department University of Freiburg Outline introduction rendering pipeline vertex processing primitive processing

More information

Recent Advances and Future Trends in Graphics Hardware. Michael Doggett Architect November 23, 2005

Recent Advances and Future Trends in Graphics Hardware. Michael Doggett Architect November 23, 2005 Recent Advances and Future Trends in Graphics Hardware Michael Doggett Architect November 23, 2005 Overview XBOX360 GPU : Xenos Rendering performance GPU architecture Unified shader Memory Export Texture/Vertex

More information

Exercise: Building and zone geometry import from SketchUp

Exercise: Building and zone geometry import from SketchUp Exercise: Building and zone geometry import from SketchUp Purpose Learn how to create and import building and zone geometry from SketchUp into IDA ICE. Learn how to work with imported building and zone

More information

CG Cookie Workshop:! Mastering Mesh Modeling!

CG Cookie Workshop:! Mastering Mesh Modeling! CG Cookie Workshop: Mastering Mesh Modeling By: Jonathan Williamson This CG Cookie workshop is intended to provide an in-depth study of the key theories, fundamentals, and techniques you need to know about

More information

Our One-Year 3D Animation Program is a comprehensive training in 3D using Alias

Our One-Year 3D Animation Program is a comprehensive training in 3D using Alias 1 YEAR 3D ANIMATION Illusion is the first of all pleasures Oscar Wilde Our One-Year 3D Animation Program is a comprehensive training in 3D using Alias Oscar Winning software, Maya, the industry standard

More information

Maya 2014 Still Life Part 1 Texturing & Lighting

Maya 2014 Still Life Part 1 Texturing & Lighting Maya 2014 Still Life Part 1 Texturing & Lighting Realistic lighting and texturing is the key to photorealism in your 3D renders. Objects and scenes with relatively simple geometry can look amazing with

More information

IES <Virtual Environment> Tutorial. ModelIT (Version 6.0)

IES <Virtual Environment> Tutorial. ModelIT (Version 6.0) IES Tutorial ModelIT (Version 6.0) 1 Introduction: ModelIT Tutorial This document shows you how to use ModelIT, IES s 3D building geometry modelling tool. The tutorial is intended

More information

OpenGL Performance Tuning

OpenGL Performance Tuning OpenGL Performance Tuning Evan Hart ATI Pipeline slides courtesy John Spitzer - NVIDIA Overview What to look for in tuning How it relates to the graphics pipeline Modern areas of interest Vertex Buffer

More information

Silverlight for Windows Embedded Graphics and Rendering Pipeline 1

Silverlight for Windows Embedded Graphics and Rendering Pipeline 1 Silverlight for Windows Embedded Graphics and Rendering Pipeline 1 Silverlight for Windows Embedded Graphics and Rendering Pipeline Windows Embedded Compact 7 Technical Article Writers: David Franklin,

More information

Optimization of 3D Game Models

Optimization of 3D Game Models Södertörns högskola Institutionen för naturvetenskap, miljö och teknik Kandidatuppsats 15 hp Medieteknik höstterminen 2013 Optimization of 3D Game Models A qualitative research study in Unreal Development

More information

Maya 2014 Basic Animation & The Graph Editor

Maya 2014 Basic Animation & The Graph Editor Maya 2014 Basic Animation & The Graph Editor When you set a Keyframe (or Key), you assign a value to an object s attribute (for example, translate, rotate, scale, color) at a specific time. Most animation

More information

TurboCAD Architectural

TurboCAD Architectural TurboCAD Architectural Version 15 Getting Started Guide IMSI/Design LLC, US 100 Rowland Blvd. Novato. CA 94945, USA Tel: +1-415-878-4000 Fax: +1-415-897-2544 Web Site www.imsisoft.com www.turbocad.com

More information

Columbus College of Art & Design 1 Charlotte Belland

Columbus College of Art & Design 1 Charlotte Belland Reference Images Always line- up in PhotoShop and make the image Square (this avoids distortions) Create and/or Find reference images that distill the planes of volume (image credit: Animal Anatomy for

More information

SkillsUSA 2014 Contest Projects 3-D Visualization and Animation

SkillsUSA 2014 Contest Projects 3-D Visualization and Animation SkillsUSA Contest Projects 3-D Visualization and Animation Click the Print this Section button above to automatically print the specifications for this contest. Make sure your printer is turned on before

More information

Autodesk Revit Architecture 2011 Professional Massmodeling Rendering Video Tutorial

Autodesk Revit Architecture 2011 Professional Massmodeling Rendering Video Tutorial Autodesk Revit Architecture 2011 Professional Massmodeling Rendering Video Tutorial Instructor Handout Created by: Marvi Basha, Klaus Hyden und Philipp Müller Autodesk Student Experts TU Graz September

More information

Introduction to Computer Graphics

Introduction to Computer Graphics Introduction to Computer Graphics Torsten Möller TASC 8021 778-782-2215 torsten@sfu.ca www.cs.sfu.ca/~torsten Today What is computer graphics? Contents of this course Syllabus Overview of course topics

More information

Half-Life 2 Mods FOR. Wiley Publishing, Inc. by Erik Guilfoyle WILEY 2 O O 7 1 8 O 7

Half-Life 2 Mods FOR. Wiley Publishing, Inc. by Erik Guilfoyle WILEY 2 O O 7 1 8 O 7 Half-Life 2 Mods FOR by Erik Guilfoyle 1 8 O 7 WILEY 2 O O 7 Wiley Publishing, Inc. Contents at a Glance Introduction 7 Part 1: The ABCs of Modding 7 Chapter 1: Modifying the Game 9 Chapter 2: Getting

More information

Plug-in Software Developer Kit (SDK)

Plug-in Software Developer Kit (SDK) Updated February 2, 2012 2 modo 601 Plug-in Development Kit for PC and Mac The modo 601 Plug-in Software Development Kit provides a set of Application Programming Interfaces (APIs) and numerous source

More information

Deferred Shading & Screen Space Effects

Deferred Shading & Screen Space Effects Deferred Shading & Screen Space Effects State of the Art Rendering Techniques used in the 3D Games Industry Sebastian Lehmann 11. Februar 2014 FREESTYLE PROJECT GRAPHICS PROGRAMMING LAB CHAIR OF COMPUTER

More information

CREATING A 3D VISUALISATION OF YOUR PLANS IN PLANSXPRESS AND CORTONA VRML CLIENT

CREATING A 3D VISUALISATION OF YOUR PLANS IN PLANSXPRESS AND CORTONA VRML CLIENT CREATING A 3D VISUALISATION OF YOUR PLANS IN PLANSXPRESS AND CORTONA VRML CLIENT 20-25 Minutes This topic is for users of PlansXpress Total Toolkit Edition. To upgrade to PlansXpress Total Toolkit, call

More information

MassArt Studio Foundation: Visual Language Digital Media Cookbook, Fall 2013

MassArt Studio Foundation: Visual Language Digital Media Cookbook, Fall 2013 INPUT OUTPUT 08 / IMAGE QUALITY & VIEWING In this section we will cover common image file formats you are likely to come across and examine image quality in terms of resolution and bit depth. We will cover

More information

Winnebago Industries, Inc. Interactive Parts Catalog

Winnebago Industries, Inc. Interactive Parts Catalog Winnebago Industries, Inc. Interactive Parts Catalog Introduction... 2 Parts List... 4 Graphics Window... 7 3D Model... 8 3D Model Toolbars... 9 2D Image... 10 2D Image Toolbar... 10 Colored Parts Lookup...

More information

Kitchen and Bath Design Tutorial

Kitchen and Bath Design Tutorial Chapter 5: Kitchen and Bath Design Tutorial This tutorial continues where the Materials Tutorial left off. You should save this tutorial using a new name to archive your previous work. The tools and techniques

More information

CATIA: Navigating the CATIA V5 environment. D. CHABLAT / S. CARO Damien.Chablat@irccyn.ec-nantes.fr

CATIA: Navigating the CATIA V5 environment. D. CHABLAT / S. CARO Damien.Chablat@irccyn.ec-nantes.fr CATIA: Navigating the CATIA V5 environment D. CHABLAT / S. CARO Damien.Chablat@irccyn.ec-nantes.fr Standard Screen Layout 5 4 6 7 1 2 3 8 9 10 11 12 13 14 15 D. Chablat / S. Caro -- Institut de Recherche

More information

Shader Model 3.0. Ashu Rege. NVIDIA Developer Technology Group

Shader Model 3.0. Ashu Rege. NVIDIA Developer Technology Group Shader Model 3.0 Ashu Rege NVIDIA Developer Technology Group Talk Outline Quick Intro GeForce 6 Series (NV4X family) New Vertex Shader Features Vertex Texture Fetch Longer Programs and Dynamic Flow Control

More information

Creating 2D Drawings from 3D AutoCAD Models

Creating 2D Drawings from 3D AutoCAD Models Creating 2D Drawings from 3D AutoCAD Models David Piggott CrWare, LP GD205-2P This class explores the various techniques in creating 2D part and assembly drawings from 3D AutoCAD models. As part of the

More information

Creating an invitation

Creating an invitation Creating an invitation Michaela Maginot About the author Michaela Maginot lives in Unterhaching, Germany, not too far from Munich. She graduated from the Deutschen Meisterschule für Mode (German Master

More information

Graphic Design. File Specification. Product Packet. Helping you pick the perfect display method for getting your sign noticed.

Graphic Design. File Specification. Product Packet. Helping you pick the perfect display method for getting your sign noticed. Graphic Design File Specification Product Packet Helping you pick the perfect display method for getting your sign noticed. Banners Banners grab attention and generate excitement. Temporary or permanent,

More information

Sweet Home 3D user's guide

Sweet Home 3D user's guide 1 de 14 08/01/2013 13:08 Features Download Online Gallery Blog Documentation FAQ User's guide Video tutorial Developer's guides History Reviews Support 3D models Textures Translations Forum Report a bug

More information

CREATING A CUBEMAP AND CUBE FACES FOR USE IN PHOENIX RC SCENERY CREATION

CREATING A CUBEMAP AND CUBE FACES FOR USE IN PHOENIX RC SCENERY CREATION TUTORIAL 2 CREATING A CUBEMAP AND CUBE FACES FOR USE IN PHOENIX RC SCENERY CREATION This document is copyrighted to the author and may only be reproduced or copied with the author s consent. It is free

More information

Microsoft Excel 2010 Charts and Graphs

Microsoft Excel 2010 Charts and Graphs Microsoft Excel 2010 Charts and Graphs Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Charts and Graphs 2.0 hours Topics include data groupings; creating

More information

Fireworks CS4 Tutorial Part 1: Intro

Fireworks CS4 Tutorial Part 1: Intro Fireworks CS4 Tutorial Part 1: Intro This Adobe Fireworks CS4 Tutorial will help you familiarize yourself with this image editing software and help you create a layout for a website. Fireworks CS4 is the

More information

DATA VISUALIZATION OF THE GRAPHICS PIPELINE: TRACKING STATE WITH THE STATEVIEWER

DATA VISUALIZATION OF THE GRAPHICS PIPELINE: TRACKING STATE WITH THE STATEVIEWER DATA VISUALIZATION OF THE GRAPHICS PIPELINE: TRACKING STATE WITH THE STATEVIEWER RAMA HOETZLEIN, DEVELOPER TECHNOLOGY, NVIDIA Data Visualizations assist humans with data analysis by representing information

More information

Off-line Model Simplification for Interactive Rigid Body Dynamics Simulations Satyandra K. Gupta University of Maryland, College Park

Off-line Model Simplification for Interactive Rigid Body Dynamics Simulations Satyandra K. Gupta University of Maryland, College Park NSF GRANT # 0727380 NSF PROGRAM NAME: Engineering Design Off-line Model Simplification for Interactive Rigid Body Dynamics Simulations Satyandra K. Gupta University of Maryland, College Park Atul Thakur

More information

Roof Tutorial. Chapter 3:

Roof Tutorial. Chapter 3: Chapter 3: Roof Tutorial The first portion of this tutorial can be completed independent of the previous tutorials. We ll go over some common roof styles that can be created using settings in the Wall

More information

Introduction to ANSYS ICEM CFD

Introduction to ANSYS ICEM CFD Workshop 8.2 3D Pipe Junction 14.5 Release Introduction to ANSYS ICEM CFD 2012 ANSYS, Inc. April 1, 2013 1 Release 14.5 3D Pipe Junction 3D Pipe Junction This is a simple 4-way pipe intersection with two

More information

How is EnSight Uniquely Suited to FLOW-3D Data?

How is EnSight Uniquely Suited to FLOW-3D Data? How is EnSight Uniquely Suited to FLOW-3D Data? July 5, 2011 figure 1. FLOW-3D model of Dam visualized with EnSight If you would like to know how CEI s EnSight offers you more power than other postprocessors

More information

Maxwell Render 1.5 complete list of new and enhanced features

Maxwell Render 1.5 complete list of new and enhanced features Maxwell Render 1.5 complete list of new and enhanced features Multiprocessor Maxwell Render can exploit all of the processors available on your system and can make them work simultaneously on the same

More information

Rule-Based Ship Design

Rule-Based Ship Design Rule-Based Ship Design A White Paper Process, Power & Marine, a division of Intergraph Table of Contents 1. Introduction... 1 2. Advantages to Rule-Based Design... 2 2.1 Embedding Design Practices...2

More information

Creating Your Own 3D Models

Creating Your Own 3D Models 14 Creating Your Own 3D Models DAZ 3D has an extensive growing library of 3D models, but there are times that you may not find what you want or you may just want to create your own model. In either case

More information

Blender addons ESRI Shapefile import/export and georeferenced raster import

Blender addons ESRI Shapefile import/export and georeferenced raster import Blender addons ESRI Shapefile import/export and georeferenced raster import This blender addon is a collection of 4 tools: ESRI Shapefile importer - Import point, pointz, polyline, polylinez, polygon,

More information

Activity Set 4. Trainer Guide

Activity Set 4. Trainer Guide Geometry and Measurement of Solid Figures Activity Set 4 Trainer Guide Mid_SGe_04_TG Copyright by the McGraw-Hill Companies McGraw-Hill Professional Development GEOMETRY AND MEASUREMENT OF SOLID FIGURES

More information

Character Animation Tutorial

Character Animation Tutorial Character Animation Tutorial 1.Overview 2.Modelling 3.Texturing 5.Skeleton and IKs 4.Keys 5.Export the character and its animations 6.Load the character in Virtools 7.Material & texture tuning 8.Merge

More information

Kitchen and Bath Design Tutorial

Kitchen and Bath Design Tutorial Adding Cabinets Chapter 5: Kitchen and Bath Design Tutorial This tutorial continues where the Materials Tutorial left off. You should save this tutorial using a new name to archive your previous work.

More information

OMC Study Group MEETING 3: NOTES. Section 1: Building Design Page 2 Section 2: Site Layout Page 9 Section 3: Summary Page 16

OMC Study Group MEETING 3: NOTES. Section 1: Building Design Page 2 Section 2: Site Layout Page 9 Section 3: Summary Page 16 OMC Study Group MEETING 3: NOTES Section 1: Building Design Page 2 Section 2: Site Layout Page 9 Section 3: Summary Page 16 Section 1 Building Design Page 2 of 16 General Comments during Building Design

More information

All You Need to Know About Capturing Screens

All You Need to Know About Capturing Screens All You Need to Know About Capturing Screens Consulting matthew@ellisonconsulting.com What we ll cover in this session Recommendations on when and how to use screenshots in your user assistance Potential

More information

Water Flow in. Alex Vlachos, Valve July 28, 2010

Water Flow in. Alex Vlachos, Valve July 28, 2010 Water Flow in Alex Vlachos, Valve July 28, 2010 Outline Goals & Technical Constraints How Artists Create Flow Maps Flowing Normal Maps in Left 4 Dead 2 Flowing Color Maps in Portal 2 Left 4 Dead 2 Goals

More information

Industrial Suburban District Regulations City of St. Petersburg City Code Chapter 16, Land Development Regulations

Industrial Suburban District Regulations City of St. Petersburg City Code Chapter 16, Land Development Regulations 16.20.110 - Industrial Suburban District ( IS ) Figure REFERENCE Typical Buildings in the IS District Figure REFERENCE Site Plan of a typical development in the IS District Sections: 16.20.110.1 Composition

More information

Printing Guide. MapInfo Pro Version 15.0. Contents:

Printing Guide. MapInfo Pro Version 15.0. Contents: MapInfo Pro Version 15.0 The purpose of this guide is to assist you in getting the best possible output from your MapInfo Pro software. We begin by covering the new print, import, and export features and

More information

HIGH AND LOW RESOLUTION TEXTURED MODELS OF COMPLEX ARCHITECTURAL SURFACES

HIGH AND LOW RESOLUTION TEXTURED MODELS OF COMPLEX ARCHITECTURAL SURFACES HIGH AND LOW RESOLUTION TEXTURED MODELS OF COMPLEX ARCHITECTURAL SURFACES E. K. Stathopoulou a, A. Valanis a, J. L. Lerma b, A. Georgopoulos a a Laboratory of Photogrammetry, National Technical University

More information

Home Designer. Interiors. New Version!

Home Designer. Interiors. New Version! Interiors Home Designer New Version! 0 10 T quickly with easy How-To Videos for step-by-step instructions HomeDesignerSoftware.com Interior Design Decorating Kitchens & Baths Room Design Remodeling Furniture

More information

The Dennis Technique for SketchUp Models in Photoshop

The Dennis Technique for SketchUp Models in Photoshop The Dennis Technique for SketchUp Models in Photoshop The big concept is to put a Black & White drawing over a coloured one and then artistically erase just enough of the top Black and White so that essential

More information

TULSA PRESERVATION COMMISSION

TULSA PRESERVATION COMMISSION TULSA PRESERVATION COMMISSION COA SUBCOMMITTEE - STAFF REPORT Thursday, July 2, 2015 COA-15-028 COA NUMBER: COA-15-028 PROPERTY ADDRESS: 1008 N. DENVER AVE. DISTRICT: BRADY HEIGHTS HISTORIC DISTRICT APPLICANT:

More information

VRayPattern also allows to curve geometry on any surface

VRayPattern also allows to curve geometry on any surface Introduction VrayPattern is a plug-in for 3dsmax and V-Ray VRayPattern allows to multiply geometry periodically without extra memory consumption. As a sample you can use any tiled geometry (or those with

More information

Cura for Type A Machines Quick Start Guide

Cura for Type A Machines Quick Start Guide Cura for Type A Machines Quick Start Guide 1 Table of Contents About Cura for Type A Machines Downloading Cura for Type A Machines Installing Cura for Type A Machines Mac Windows Linux About the Configuration

More information

MapInfo Professional Version 12.5. Printing Guide

MapInfo Professional Version 12.5. Printing Guide MapInfo Professional Version 12.5 Printing Guide The purpose of this guide is to assist you in getting the best possible output from your MapInfo Professional software. We begin by covering the new print,

More information

Pro/ENGINEER Wildfire 4.0 Basic Design

Pro/ENGINEER Wildfire 4.0 Basic Design Introduction Datum features are non-solid features used during the construction of other features. The most common datum features include planes, axes, coordinate systems, and curves. Datum features do

More information

Gas Dynamics Prof. T. M. Muruganandam Department of Aerospace Engineering Indian Institute of Technology, Madras. Module No - 12 Lecture No - 25

Gas Dynamics Prof. T. M. Muruganandam Department of Aerospace Engineering Indian Institute of Technology, Madras. Module No - 12 Lecture No - 25 (Refer Slide Time: 00:22) Gas Dynamics Prof. T. M. Muruganandam Department of Aerospace Engineering Indian Institute of Technology, Madras Module No - 12 Lecture No - 25 Prandtl-Meyer Function, Numerical

More information

House Design Tutorial

House Design Tutorial Chapter 2: House Design Tutorial This House Design Tutorial shows you how to get started on a design project. The tutorials that follow continue with the same plan. When we are finished, we will have created

More information

CAD/CAM DESIGN TOOLS. Software supplied with all new and upgraded Boxford Lathes, Mills and Routers

CAD/CAM DESIGN TOOLS. Software supplied with all new and upgraded Boxford Lathes, Mills and Routers CAD/CAM DESIGN TOOLS Software supplied with all new and upgraded Boxford Lathes, Mills and Routers The Boxford CAD/CAM Design Tools software is a unique suite of integrated CAD and CAM tools designed specifically

More information

Raising the Roof Creating Roofs in Revit David Cohn

Raising the Roof Creating Roofs in Revit David Cohn David Cohn AB322-1 Roofs are one of the most complex architectural elements to model, but with Revit you can create just about any type of roof. This class will explore the best methods for creating various

More information

Fire is the rapid oxidation of a combustible material, releasing heat, light, smoke, and various toxic gases

Fire is the rapid oxidation of a combustible material, releasing heat, light, smoke, and various toxic gases VENTILATION Fire is the rapid oxidation of a combustible material, releasing heat, light, smoke, and various toxic gases If a fire is contained in a building, the heat, smoke, and toxic gases will spread.

More information

Procedural Animation. An introduction

Procedural Animation. An introduction Procedural Animation An introduction What is procedural? Procedural animation is an approach (i.e. a way) to create animation. It is not a style of animation. But the animation created by procedural approach

More information

Computer Applications in Textile Engineering. Computer Applications in Textile Engineering

Computer Applications in Textile Engineering. Computer Applications in Textile Engineering 3. Computer Graphics Sungmin Kim http://latam.jnu.ac.kr Computer Graphics Definition Introduction Research field related to the activities that includes graphics as input and output Importance Interactive

More information

Race 07 Car Skinning Tutorial

Race 07 Car Skinning Tutorial Race 07 Car Skinning Tutorial Created by: Ramon van Rijn In this tutorial we end in having this end-product; see screenshot.jpg Screenshot.jpg 1 Note: Make sure you have Photoshop and the Nvidia DDS plug-in

More information

glass & Glazing Products

glass & Glazing Products glass & Glazing Products WallMaker Create an unlimited variety of bright, beautiful and secure interior environments with the easy-to-install Stylmark WallMaker glass wall system. This versatile system

More information

Optimizing Unity Games for Mobile Platforms. Angelo Theodorou Software Engineer Unite 2013, 28 th -30 th August

Optimizing Unity Games for Mobile Platforms. Angelo Theodorou Software Engineer Unite 2013, 28 th -30 th August Optimizing Unity Games for Mobile Platforms Angelo Theodorou Software Engineer Unite 2013, 28 th -30 th August Agenda Introduction The author and ARM Preliminary knowledge Unity Pro, OpenGL ES 3.0 Identify

More information

MASKS & CHANNELS WORKING WITH MASKS AND CHANNELS

MASKS & CHANNELS WORKING WITH MASKS AND CHANNELS MASKS & CHANNELS WORKING WITH MASKS AND CHANNELS Masks let you isolate and protect parts of an image. When you create a mask from a selection, the area not selected is masked or protected from editing.

More information

Bachelor of Games and Virtual Worlds (Programming) Subject and Course Summaries

Bachelor of Games and Virtual Worlds (Programming) Subject and Course Summaries First Semester Development 1A On completion of this subject students will be able to apply basic programming and problem solving skills in a 3 rd generation object-oriented programming language (such as

More information

MGL Avionics. MapMaker 2. User guide

MGL Avionics. MapMaker 2. User guide MGL Avionics MapMaker 2 User guide General The MGL Avionics MapMaker application is used to convert digital map images into the raster map format suitable for MGL EFIS systems. Note: MapMaker2 produces

More information

16 Circles and Cylinders

16 Circles and Cylinders 16 Circles and Cylinders 16.1 Introduction to Circles In this section we consider the circle, looking at drawing circles and at the lines that split circles into different parts. A chord joins any two

More information

New Features in TerraPhoto. Arttu Soininen Software developer Terrasolid Ltd

New Features in TerraPhoto. Arttu Soininen Software developer Terrasolid Ltd New Features in TerraPhoto Arttu Soininen Software developer Terrasolid Ltd Export City Model Improvements Roof slope setting determines what polygons will be treated as walls and what as roofs Write roofs

More information

How To Draw In Autocad

How To Draw In Autocad DXF Import and Export for EASE 4.0 Page 1 of 9 DXF Import and Export for EASE 4.0 Bruce C. Olson, Dr. Waldemar Richert ADA Copyright 2002 Acoustic Design Ahnert EASE 4.0 allows both the import and export

More information

Scripting in Unity3D (vers. 4.2)

Scripting in Unity3D (vers. 4.2) AD41700 Computer Games Prof. Fabian Winkler Fall 2013 Scripting in Unity3D (vers. 4.2) The most basic concepts of scripting in Unity 3D are very well explained in Unity s Using Scripts tutorial: http://docs.unity3d.com/documentation/manual/scripting42.html

More information

TRENDS IN HARDWARE FOR GEOGRAPHIC INFORMATION SYSTEMS

TRENDS IN HARDWARE FOR GEOGRAPHIC INFORMATION SYSTEMS TRENDS IN HARDWARE FOR GEOGRAPHIC INFORMATION SYSTEMS Jack Dangermond Scott Morehouse Environmental Systems Research Institute 380 New York Street Redlands,CA 92373 ABSTRACT This paper presents a description

More information

Lesson 3.1 Factors and Multiples of Whole Numbers Exercises (pages 140 141)

Lesson 3.1 Factors and Multiples of Whole Numbers Exercises (pages 140 141) Lesson 3.1 Factors and Multiples of Whole Numbers Exercises (pages 140 141) A 3. Multiply each number by 1, 2, 3, 4, 5, and 6. a) 6 1 = 6 6 2 = 12 6 3 = 18 6 4 = 24 6 5 = 30 6 6 = 36 So, the first 6 multiples

More information

SketchUp Instructions

SketchUp Instructions SketchUp Instructions Every architect needs to know how to use SketchUp! SketchUp is free from Google just Google it and download to your computer. You can do just about anything with it, but it is especially

More information

Advanced Visual Effects with Direct3D

Advanced Visual Effects with Direct3D Advanced Visual Effects with Direct3D Presenters: Mike Burrows, Sim Dietrich, David Gosselin, Kev Gee, Jeff Grills, Shawn Hargreaves, Richard Huddy, Gary McTaggart, Jason Mitchell, Ashutosh Rege and Matthias

More information

Welcome to CorelDRAW, a comprehensive vector-based drawing and graphic-design program for the graphics professional.

Welcome to CorelDRAW, a comprehensive vector-based drawing and graphic-design program for the graphics professional. Creating a logo Welcome to CorelDRAW, a comprehensive vector-based drawing and graphic-design program for the graphics professional. In this tutorial, you will create a logo for an imaginary coffee shop.

More information