Material Definition Language Handbook

Size: px
Start display at page:

Download "Material Definition Language Handbook"

Transcription

1

2

3

4

5

6 Material Definition Language Handbook

7

8 Outline 1 The design rationale for MDL 2 The structure of a material 3 Light at a surface 4 Fabric a modular approach

9 1 The design rationale for MDL

10 red plastic ball render picture Object and appearance together

11 plastic ball render picture red Separate appearance attribute

12 ball render picture red plastic Separate appearance

13 ball render picture red plastic Attribute as appearance parameter

14 bicycle render picture red plastic A different object

15 bicycle bicycle render picture render picture red plastic blue plastic A different attribute

16 bicycle bicycle bicycle render picture render picture render picture red plastic blue plastic blue metal A different substance

17 geometry render picture parameters material The general categories

18 geometry render picture MDL parameters material The domain of MDL

19 Object (Le Déjeuner en fourrure) Méret Oppenheim, 1936

20 Two big ideas

21 Idea #1: Light is only reflected, transmitted and emitted.

22 Reflection, transmission and emission

23 Reflection and refraction

24 Emission

25 Volume effects

26 Idea #2: Angles matter.

27 A perfectly specular surface

28 A perfectly diffuse surface

29 Surfaces of increasing roughness resulting in decreasing glossiness

30 Examples of the distribution function

31 Varying brightness based on the angle of view with a constant light angle

32 Varying brightness based on the incident angle of light with a constant view angle

33 The effect of increasing surface roughness on transmission

34 A normal vector forms a 90-degree angle to the surface

35 The normal vector creates a frame of reference for the viewing and lighting angles

36 The normal vector describes the orientation of a surface at any point

37 reflection transmission emission diffuse plaster frosted plexiglas heated iron glossy brushed aluminum shower door glass spotlight specular mirror crystal ball laser (?) Examples of the combinations of light interaction and angular dependence?

38 Material Surface Reflection and transmission Emission Volume scattering Geometric manipulation The structural model of an MDL material

39 An MDL material is a grouping of rendering properties based both on the physics of light as well as on practical and traditional techniques that extend the power of the renderer.

40 2 The structure of a material

41 A model of compound data

42 Data type: circle number number number cx cy radius A data compound type

43 Data type: circle number cx. number number cy radius A data compound type

44 Data type: circle A circle instance: circle_1 number cx cx 0. number number cy radius cy 0 radius 5 A compound type and an instance of the type

45 Data type: color number number number red green blue A compound data type

46 Data type: color number red. number number green blue A compound data type

47 Data type: color A color instance: dark_red number red red 0.5. number number green blue green 0.1 blue 0.2 A compound type and an instance of the type

48 Data type: tinted_circle number number number color cx cy radius tint A compound data type

49 Data type: tinted_circle number number number color cx cy radius tint. A compound data type

50 Data type: tinted_circle number cx number cy. A tinted_circle instance: dark_red_circle cx 0 cy 0 radius 5 number color radius tint tint A color instance red 0.5 green 0.1 blue 0.2 A doubly compound type and an instance of the type

51 The syntax of compound data in MDL

52 struct circle { float cx; float cy; float radius; }; Syntax of struct declaration

53 struct circle { float cx; float cy; float radius; }; Syntax of struct declaration

54 struct circle { float cx; float cy; float radius; }; struct struct-name {... }; type field-name ; Syntax of struct declaration

55 struct-name ( field-value,... ) Creating an instance of an MDL struct

56 struct-name ( field-value,... ). Creating an instance of an MDL struct

57 struct-name ( field-value,... ). circle(0, 0, 5) Creating an instance of an MDL struct

58 struct color { float red; float green; float blue; }; A struct declaration

59 struct color {. float red; float green; float blue; }; A struct declaration

60 struct color { float red; float green; float blue; }; color(0.5, 0.1, 0.2). An instance created from the struct type

61 Defining default values for the fields of a struct

62 struct struct-name { type field-name = default-value ;... }; Defining default values for the fields of a struct

63 struct struct-name { type field-name = default-value ;.... }; Defining default values for the fields of a struct

64 struct struct-name { type field-name = default-value ;... };. struct circle { float cx = 0.0; float cy = 0.0; float radius = 1.0; }; Defining default values for the fields of a struct

65 struct-name ( field-name: field-value ) struct-name ( field-name-1: field-value-1, field-name-2: field-value-2,... ) Name/value pairs in the argument list

66 struct-name ( field-name: field-value ). struct-name (. field-name-1: field-value-1, field-name-2: field-value-2,... ) Name/value pairs in the argument list

67 struct-name ( field-name: field-value ). circle(radius: 5.0) struct-name ( field-name-1: field-value-1, field-name-2: field-value-2,... ). circle(radius: 5.0, cx: 5, cy: 15) Creating an instance of the circle type

68 struct tinted_circle { float cx = 0.0; float cy = 0.0; float radius = 1.0; color tint = color( 0.5, 0.5, 0.5); }; A doubly compound type

69 struct tinted_circle { float cx = 0.0; float cy = 0.0; float radius = 1.0;. color tint = color( 0.5, 0.5, 0.5); }; A doubly compound type

70 struct tinted_circle { float cx = 0.0; float cy = 0.0; tinted_circle( 2, 4, 10, color(0.5, 0.1, 0.2)); float radius = 1.0;. color tint = color( 0.5, 0.5, 0.5); tinted_circle( tint: color( 1, 0, 0)) }; Creating an instance of the tinted_circle type

71 tinted_circle ( cx: 2, cy: 4, radius: 5, tint: color ( red: 0.5, green: 0.1, blue: 0.2 )); Formatting the code of compound types

72 The design of the MDL material type

73 Material Reflection properties Transmission properties Emission properties Fundamental surface interaction properties

74 Material Surface properties Reflection Transmission Emission Surface interaction properties grouped together

75 Material Surface properties Reflection Transmission Emission Volume properties Adding volumetric properties

76 Material Surface properties Reflection Transmission Emission Volume properties Geometric properties Adding geometric properties

77 Material Surface properties of front-facing surfaces Reflection Transmission Emission Surface properties of back-facing surfaces Reflection Transmission Emission Volume properties Geometric properties Adding a field for the appearance of back-facing surfaces

78 Material Surface properties of front-facing surfaces Reflection Transmission Emission Surface properties of back-facing surfaces Reflection Transmission Emission Volume properties Geometric properties Shared properties Index of refraction Surface treated as boundary or volume Adding shared properties

79 struct material { uniform bool thin_walled = false; material_surface surface = material_surface(); material_surface backface = material_surface(); uniform color ior = color(1.0); material_volume volume = material_volume(); material_geometry geometry = material_geometry(); }; The material struct

80 Material properties and distribution functions

81 struct material { uniform bool thin_walled = false; material_surface surface = material_surface(); material_surface backface = material_surface(); Surface interaction uniform color ior = color(1.0); material_volume volume = material_volume(); Volumetric effects material_geometry geometry = material_geometry(); Geometric manipulation }; The material struct

82 bsdf Reflection and transmission The distribution function (DF) types

83 Appearance dependent upon viewing angle Appearance dependent upon lighting angle The bidirectional aspect of the BSDF

84 bsdf Reflection and transmission The distribution function (DF) types

85 bsdf edf Reflection and transmission Emission The distribution function (DF) types

86 bsdf edf vdf Reflection and transmission Emission Volume The distribution function (DF) types

87 Reflection and transmission Emission Volume diffuse_reflection_bsdf diffuse_edf anisotropic_vdf diffuse_transmission_bsdf specular_bsdf spot_edf measured_edf simple_glossy_bsdf backscattering_glossy_reflection_bsdf measured_bsdf The standard distribution functions

88 struct material_surface { bsdf scattering = bsdf(); Bidirectional scattering DF material_emission emission = material_emission(); }; The struct describing surface interaction properties

89 struct material_surface { bsdf scattering = bsdf(); material_emission emission = material_emission(); Light emission property }; The struct describing surface interaction properties

90 struct material_emission { edf emission = edf(); Light emission DF color intensity = color(0.0); intensity_mode mode = intensity_radiant_exitance; }; The struct describing emissive properties

91 struct material_volume { vdf scattering = vdf(); Volume DF color absorption_coefficient = color(); color scattering_coefficient = color(); }; The struct describing volumetric properties

92 struct material_geometry { float3 displacement = float3(0.0); float cutout_opacity = 1.0; float3 normal = state::normal(); }; The struct describing geometric properties

93 material thin_walled surface scattering emission backface scattering emission ior material ( thin_walled : boolean-value, ) surface backface ior volume geometry : material-surface-instance, : material-surface-instance, : color-instance, : material-volume-instance, : material-geometry-instance volume scattering geometry

94 2 Light at a surface

95 The simplest material

96 material() The simplest material

97 Material property material_surface material_emission material_volume material_geometry Effect of its default value No reflection or transmission of light No emission of light No absorption or scattering of light in the volume No manipulation of the surface Visual effect of the default values of the material properties

98 material nil() = material(); Creating a material definition from the simplest material

99 declaration = definition ; Syntax of a material creation

100 material name(material-parameters) = material(material-arguments); Syntax of arguments and parameters

101 material name ( material-parameters ) = material ( material-arguments ); Formatting a material definition

102 The compound structure of a diffuse reflection material

103 material instance material properties distribution functions A model of the nesting of data in an MDL material

104 material plaster () = material ( material-arguments ); Defining a material named plaster

105 material plaster () = material ( surface: surface-property ); Adding the surface field

106 material plaster () = material ( surface: material_surface ( material-surface-arguments )); Using the material_surface property

107 material plaster () = material ( surface: material_surface ( scattering: bsdf-instance )); Adding the scattering field to the material_surface property

108 material plaster () = material ( surface: material_surface ( scattering: df::diffuse_reflection_bsdf ( bsdf-arguments ))); Using the diffuse reflection BSDF

109 material plaster () = material ( surface: material_surface ( scattering: df::diffuse_reflection_bsdf ( tint: color(0.7) ))); The definition of the plaster material

110 The appearance of diffuse reflection produced by the plaster material

111 material thin_walled surface scattering emission backface scattering emission material plaster () = material ( surface: material_surface ( scattering: df::diffuse_reflection_bsdf ( tint: color(0.7) ))); ior volume scattering geometry

112 The material's role in the rendering system

113 material plaster () = material ( surface: material_surface ( scattering: df::diffuse_reflection_bsdf ( tint: color(0.7) ))); The plaster material defines no parameters

114 plaster() No arguments can be supplied to the plaster material

115 material plaster ( parameter-declarations ) = material ( surface: material_surface ( scattering: df::diffuse_reflection_bsdf ( parameter-references ))); Adding parameters to the plaster material

116 material plaster ( color tint = color(0.7) ) Tint exposed as a parameter = material ( surface: material_surface ( scattering: df::diffuse_reflection_bsdf ( tint: tint ))); Using the tint parameter value Exposing the tint parameter in the interface

117 plaster(tint: color(0.3, 0.1, 0.1)) Using the plaster material with a value for the tint argument

118 material plaster ( color tint = color(0.7), float roughness = 0.0 ) Degree of roughness as a parameter = material ( surface: material_surface ( scattering: df::diffuse_reflection_bsdf ( tint: tint, roughness: roughness ))); Roughness passed to the BSDF Exposing the roughness parameter in the interface

119 Diffuse transmission

120 material diffuse_transmission () = material ( surface: material_surface ( scattering: df::diffuse_transmission_bsdf ( tint: color(1.0) ))); Diffuse transmission A simple material for diffuse transmission

121 Diffuse transmission

122 Diffuse transmission through a thin object

123 Shadows visible from diffuse transmission through a thin object

124 Light emission

125 material thin_walled surface scattering emission backface scattering emission ior material emission ( color tint = color(1.0) ) = material ( surface: material_surface ( emission: material_emission ( emission: df::diffuse_edf(), intensity: tint ))); Light emission from front surface volume scattering geometry

126 Emissive rectangular polygons

127 material thin_walled surface scattering emission backface scattering emission ior volume scattering material emission_with_diffuse_backface ( color tint = color(1), color backtint = color(.8,.78,.75) ) = material ( thin_walled: true, surface: material_surface ( emission: material_emission ( emission: df::diffuse_edf(), intensity: tint )), backface: material_surface ( scattering: df::diffuse_reflection_bsdf ( tint: backtint ))); Light emission from front surface Diffuse reflection from back surface geometry

128 Emission from the front of the polygon, diffuse reflection from the back

129 Lighting environment of the images of the previous section

130 Emissive objects of the previous image pointing down

131 Emissive objects of the previous image pointing up

132 Specular interaction at a surface

133 bsdf specular_bsdf ( color tint = color(1.0), uniform scatter_mode mode = df::scatter_reflect Scattering mode ); The reflection mode of the specular BSDF

134 enum scatter_mode { scatter_reflect, scatter_transmit, scatter_reflect_transmit }; The three scatter modes

135 material thin_walled surface scattering emission backface scattering emission material mirror () = material ( surface: material_surface ( scattering: df::specular_bsdf ( tint: color(0.5), mode: df::scatter_reflect ))); Specular reflection ior volume scattering geometry

136 Pure specular reflection

137 Lighting environment of previous image

138 Effect of different lighting environment on the specular surfaces

139 Close-up of previous image

140 Small emissive surfaces pointing toward the ceiling

141 Close-up of bounce-light from ceiling

142 Specular transmission at a surface

143 Specular transmission

144 material specular_transmission ( color tint = color(1) ) = material ( ior: color(1.3), surface: material_surface ( scattering: df::specular_bsdf ( tint: tint, mode: df::scatter_transmit ))); Transmission mode A specular transmission material

145 Modifying the transmissive color

146 Hue effects of transmissive color

147 Combining specular reflection and transmission

148 Glossy interaction

149 Glossy reflection

150 Glossy transmission

151 Combining glossy reflection and transmission

152 Lighting techniques

153 diffuse reflection emission Surrounding an emissive surface with a diffuse reflection surface

154 Emissive surfaces contained within a non-emissive objects

155 Specular reflections using a sun and sky simulation

156 Close-up of sun and sky simulation

157 4 Fabric a modular approach

158

159

160 From A Practical Microcylinder Appearance Model for Cloth Rendering, Iman Sadeghi et al., 2013

161 From A Practical Microcylinder Appearance Model for Cloth Rendering, Iman Sadeghi et al., 2013

162 From A Practical Microcylinder Appearance Model for Cloth Rendering, Iman Sadeghi et al., 2013

163 From A Practical Microcylinder Appearance Model for Cloth Rendering, Iman Sadeghi et al., 2013

164 From A Practical Microcylinder Appearance Model for Cloth Rendering, Iman Sadeghi et al., 2013

165 A fabric material in MDL

166 o warp o weft

167 highlight (warp) highlight layering (iridescence) highlight layering (weft) layering (thin silk) translucency highlight Relationship of the components in the fabric material design

168 Combining distribution functions

169 Simple car paint material with clear coat

170 Layers: diffuse, edge coloring, broad highlight, narrow highlight, clear coat

171 All layers

172 normalized_mix Weights normalized if sum greater than 1.0 clamped_mix Weights added until greater than 1.0, then clamped Mixing distribution functions

173 weighted_layer fresnel_layer custom_curve_layer measured_curve_layer Add layer based on weight factor Add layer according to the index of refraction Add layer based on directionally dependent function Add layer based on a measured reflectance curve Layering distribution functions

174 Defining the warp layer

175 material anisotropic_glossy ( color tint = color(0.7), float roughness_u = 1.0, float roughness_v = 0.15) = material ( surface: material_surface ( scattering: df::simple_glossy_bsdf ( Glossy distribution tint: tint, roughness_u: roughness_u, roughness_v: roughness_v, Anisotropic effect mode: df::scatter_reflect))); Definition of the warp reflection

176 anisotropic_glossy ( tint: color(0.3,0.22,0.3), roughness_v: 0.3)

177 Defining the weft layer

178 Module std df state math tex limits anno Functionality Imports all other standard modules and re-exports all declarations Elemental distribution functions, modifiers, and combiners Renderer state functions Library math functions and constants Library texture functions Global constants Annotations MDL standard modules

179 float3 modify_normal_u(float factor = 1.0) { return math::normalize( state::normal() Take the normal vector + state::texture_tangent_u(0) and push it over * factor); by some amount. } Modifying the surface normal for multiple highlights in the weft

180 material parameters field values A material s field values can refer to the material s parameters

181 material material parameters parameters temporary variables field values field values Temporary variables define intermediate values for use in the field values

182 material material material parameters material name ( parameters ) = parameters field values temporary variables let { } variables field values material ( ) field values The syntax of the three primary structural components of a material

183 material material name ( parameters ) = let { } variables material ( ) field values

184 material name ( parameters ) = let { variables } material ( ) material field values material anisotropic_glossy_three_lobes ( color tint = color(0.7), float roughness = 0.1, uniform float normal_strength = 1.5) = let { float3 start_normal = modify_normal_u(-normal_strength); float3 middle_normal = state::normal(); float3 end_normal = modify_normal_u(normal_strength); bsdf glossy_component = anisotropic_glossy ( tint: tint, roughness_v: 1, roughness_u: roughness).surface.scattering; } in material ( surface: material_surface ( scattering: df::weighted_layer ( weight: 0.5, normal: middle_normal, layer: glossy_component, base: df::weighted_layer ( weight: 0.5, normal: end_normal, layer: glossy_component, base: df::weighted_layer ( weight: 1.0, normal: start_normal, layer: glossy_component)))));

185 material anisotropic_glossy_three_lobes ( color tint = color(0.7), float roughness = 0.1, uniform float normal_strength = 1.5) = let { float3 start_normal = modify_normal_u(-normal_strength); float3 middle_normal = state::normal(); float3 end_normal = modify_normal_u(normal_strength); bsdf glossy_component = anisotropic_glossy ( tint: tint, roughness_v: 1, roughness_u: roughness).surface.scattering; } in material ( surface: material_surface ( scattering: df::weighted_layer ( weight: 0.5, normal: middle_normal, layer: glossy_component, base: df::weighted_layer ( weight: 0.5, normal: end_normal, layer: glossy_component, base: df::weighted_layer ( weight: 1.0, normal: start_normal, layer: glossy_component))))); Signature Temporary variables Field values

186 material anisotropic_glossy_three_lobes (... ) = let { float3 start_normal = modify_normal_u(-normal_strength); float3 middle_normal = state::normal(); float3 end_normal = modify_normal_u(normal_strength); bsdf glossy_component = anisotropic_glossy ( tint: tint, roughness_v: 1, roughness_u: roughness).surface.scattering; } in material ( surface: material_surface ( scattering: df::weighted_layer ( weight: 0.5, normal: middle_normal, layer: glossy_component, base: df::weighted_layer ( weight: 0.5, normal: end_normal, layer: glossy_component, base: df::weighted_layer ( weight: 1.0, normal: start_normal, layer: glossy_component))))); Layer Layer Layer

187 material anisotropic_glossy_three_lobes (... ) = let { float3 start_normal = modify_normal_u(-normal_strength); float3 middle_normal = state::normal(); float3 end_normal = modify_normal_u(normal_strength); bsdf glossy_component = anisotropic_glossy ( tint: tint, roughness_v: 1, roughness_u: roughness).surface.scattering; } in material ( surface: material_surface ( scattering: df::weighted_layer ( weight: 0.5, normal: middle_normal, layer: glossy_component, base: df::weighted_layer ( weight: 0.5, normal: end_normal, layer: glossy_component, base: df::weighted_layer ( weight: 1.0, normal: start_normal, layer: glossy_component))))); Bend the normal vector one way Leave it alone Bend it the other way Unmodified normal vector Modified normal vector Modified normal vector

188 anisotropic_glossy_three_lobes ( tint: color(0.2,0.3,0.2), roughness: 0.15)

189 const color magenta = color(.3,.22,.3); const color green = color(.20,.3,.2); Defining constants for named colors

190 material warp_and_weft ( color warp_color = magenta, float warp_roughness = 0.3, color weft_color = green, float weft_roughness = 0.15, uniform float weft_normal_strength = 1.5, uniform float warp_to_weft = 3, float shadowing = 0.0) Warp control Weft control Warp contribution Shadowing Signature of material warp_and_weft

191 material warp_and_weft (... ) = let { bsdf warp = anisotropic_glossy ( tint: warp_color, roughness_u: 1.0, roughness_v: warp_roughness).surface.scattering; bsdf weft = anisotropic_glossy_three_lobes ( tint: weft_color, roughness: weft_roughness, normal_strength: weft_normal_strength).surface.scattering; float warp_weight = warp_to_weft > 1? / warp_to_weft : warp_to_weft; } in material ( surface: material_surface ( scattering: df::custom_curve_layer ( weight: shadowing, normal_reflectivity: 0.05, grazing_reflectivity: 1.0, exponent: 3, base: df::weighted_layer ( weight: warp_weight, layer: weft, base: warp)))); Layer against black (default) for shadowing Combine warp and weft layers

192 material warp_and_weft (... ) = let { bsdf warp = anisotropic_glossy ( tint: warp_color, roughness_u: 1.0, roughness_v: warp_roughness).surface.scattering; bsdf weft = anisotropic_glossy_three_lobes ( tint: weft_color, roughness: weft_roughness, normal_strength: weft_normal_strength).surface.scattering; float warp_weight = warp_to_weft > 1? / warp_to_weft : warp_to_weft; } in material ( surface: material_surface ( scattering: df::custom_curve_layer ( weight: shadowing, normal_reflectivity: 0.05, grazing_reflectivity: 1.0, exponent: 3, base: df::weighted_layer ( weight: warp_weight, layer: weft, base: warp)))); Calculate the warp layer Calculate the weft layer Calculate the warp contribution factor Use the warp contribution factor Use the warp layer Use the weft layer

193 warp_and_weft ( warp_color: color(0.3,0.22,0.3), weft_color: color(0.2,0.3,0.2))

194 material translucency ( color transmission_color = color(1)) = material ( thin_walled: true, surface: material_surface ( scattering: df::diffuse_transmission_bsdf ( tint: transmission_color))); Scattering by transmission A reusable material for translucency

195 translucency()

196 material iridescent_silk ( color warp_color = magenta, float warp_roughness = 0.3, color weft_color = green, float weft_roughness = 0.15, uniform float weft_normal_strength = 1.5, uniform float warp_to_weft = 3, float transmission_weight = 0.2, color transmission_color = color(0.95,1.0,0.95), float transmission_exponent = 3.0, float shadowing = 0.0) Warp control Weft control Warp contribution Transmission control Shadowing Signature of material iridescent_silk

197 material iridescent_silk (... ) = let { bsdf glossy = warp_and_weft ( warp_color: warp_color, warp_roughness: warp_roughness, weft_color: weft_color, weft_roughness: weft_roughness, weft_normal_strength: weft_normal_strength, warp_to_weft: warp_to_weft, shadowing: shadowing).surface.scattering; bsdf translucent = translucency ( transmission_color: transmission_color).surface.scattering; } in material ( thin_walled: true, surface: material_surface ( scattering: df::custom_curve_layer ( weight: 1.0, normal_reflectivity: transmission_weight, grazing_reflectivity: 1.0, exponent: transmission_exponent, layer: glossy, base: translucent))); Glossiness calculation Translucency calculation Layering function Glossy layer Translucent base

198 iridescent_silk()

199 iridescent_silk(transmission_weight: 0.5)

200 iridescent_silk ( warp_color: color(0.2,0.3,0.6), weft_color: color(0.07,0.05,0.05), transmission_color: color(0.95,0.95,1), transmission_weight: 0.05, shadowing: 0.3, warp_roughness: 0.3, weft_roughness: 0.15)

201 iridescent_silk ( warp_color: color(0.2,0.3,0.6), weft_color: color(0.07,0.05,0.05), transmission_color: color(0.95,0.95,1), transmission_weight: 0.05, shadowing: 0.3, warp_roughness: 0.3, weft_roughness: 0.15)

202 Other examples (and the future)

203

204

205

206

207

Material Definition Language

Material Definition Language Material Definition Language Technical introduction 19 March 2018 Version 1.2 Copyright Information 2018 NVIDIA Corporation. All rights reserved. Document build number 302800.547 ii Material Definition

More information

NVIDIA Material Definition Language

NVIDIA Material Definition Language NVIDIA Material Definition Language Technical Introduction Document version 1.0 15 November 2012 NVIDIA Advanced Rendering Center Fasanenstraße 81 10629 Berlin phone +49.30.315.99.70 fax +49.30.315.99.733

More information

Sharing Physically Based Materials Between Renderers with MDL

Sharing Physically Based Materials Between Renderers with MDL Sharing Physically Based Materials Between Renderers with MDL Jan Jordan Lutz Kettner Software Product Manager MDL Director Advanced Rendering and Materials October 10, GTC Europe 2018 Introduction to

More information

02 Shading and Frames. Steve Marschner CS5625 Spring 2016

02 Shading and Frames. Steve Marschner CS5625 Spring 2016 02 Shading and Frames Steve Marschner CS5625 Spring 2016 Light reflection physics Radiometry redux Power Intensity power per unit solid angle Irradiance power per unit area Radiance power per unit (solid

More information

CS130 : Computer Graphics Lecture 8: Lighting and Shading. Tamar Shinar Computer Science & Engineering UC Riverside

CS130 : Computer Graphics Lecture 8: Lighting and Shading. Tamar Shinar Computer Science & Engineering UC Riverside CS130 : Computer Graphics Lecture 8: Lighting and Shading Tamar Shinar Computer Science & Engineering UC Riverside Why we need shading Suppose we build a model of a sphere using many polygons and color

More information

Light and Sound. Wave Behavior and Interactions

Light and Sound. Wave Behavior and Interactions Light and Sound Wave Behavior and Interactions How do light/sound waves interact with matter? WORD Definition Example Picture REFLECTED REFRACTED is the change in direction of a wave when it changes speed

More information

Iray Uber Shader Properties. Workshop Reference Guide

Iray Uber Shader Properties. Workshop Reference Guide Iray Uber Shader Properties Workshop Reference Guide Sabine Hajostek ( esha ) February 2017 Iray Uber Shader Reference Guide 2 Contents Contents... 3 Basic Information... 4 Shader Modes... 5 PBR Metallicity/Roughness

More information

Shading I Computer Graphics I, Fall 2008

Shading I Computer Graphics I, Fall 2008 Shading I 1 Objectives Learn to shade objects ==> images appear threedimensional Introduce types of light-material interactions Build simple reflection model Phong model Can be used with real time graphics

More information

Lecture 15: Shading-I. CITS3003 Graphics & Animation

Lecture 15: Shading-I. CITS3003 Graphics & Animation Lecture 15: Shading-I CITS3003 Graphics & Animation E. Angel and D. Shreiner: Interactive Computer Graphics 6E Addison-Wesley 2012 Objectives Learn that with appropriate shading so objects appear as threedimensional

More information

Virtual Reality for Human Computer Interaction

Virtual Reality for Human Computer Interaction Virtual Reality for Human Computer Interaction Appearance: Lighting Representation of Light and Color Do we need to represent all I! to represent a color C(I)? No we can approximate using a three-color

More information

8 Human Skin Materials and Faking Sub Surface Scattering in Cycles

8 Human Skin Materials and Faking Sub Surface Scattering in Cycles 8 Human Skin Materials and Faking Sub Surface Scattering in Cycles In this chapter, we will cover: Simulating SSS in Cycles by using the Translucent shader Simulating SSS in Cycles by using the Vertex

More information

Lighting and Shading. Slides: Tamar Shinar, Victor Zordon

Lighting and Shading. Slides: Tamar Shinar, Victor Zordon Lighting and Shading Slides: Tamar Shinar, Victor Zordon Why we need shading Suppose we build a model of a sphere using many polygons and color each the same color. We get something like But we want 2

More information

All forms of EM waves travel at the speed of light in a vacuum = 3.00 x 10 8 m/s This speed is constant in air as well

All forms of EM waves travel at the speed of light in a vacuum = 3.00 x 10 8 m/s This speed is constant in air as well Pre AP Physics Light & Optics Chapters 14-16 Light is an electromagnetic wave Electromagnetic waves: Oscillating electric and magnetic fields that are perpendicular to the direction the wave moves Difference

More information

AWE Surface 1.0 Documentation

AWE Surface 1.0 Documentation AWE Surface 1.0 Documentation AWE Surface is a new, robust, highly optimized, physically plausible shader for DAZ Studio and 3Delight employing physically based rendering (PBR) metalness / roughness workflow.

More information

Ray Optics. Lecture 23. Chapter 34. Physics II. Course website:

Ray Optics. Lecture 23. Chapter 34. Physics II. Course website: Lecture 23 Chapter 34 Physics II Ray Optics Course website: http://faculty.uml.edu/andriy_danylov/teaching/physicsii Today we are going to discuss: Chapter 34: Section 34.1-3 Ray Optics Ray Optics Wave

More information

Lighting. Figure 10.1

Lighting. Figure 10.1 We have learned to build three-dimensional graphical models and to display them. However, if you render one of our models, you might be disappointed to see images that look flat and thus fail to show the

More information

3 Interactions of Light Waves

3 Interactions of Light Waves CHAPTER 22 3 Interactions of Light Waves SECTION The Nature of Light BEFORE YOU READ After you read this section, you should be able to answer these questions: How does reflection affect the way we see

More information

diffuse diffuse reflection refraction diffuse mapping diffuse reflection reflection filter mapping mapping reflection

diffuse diffuse reflection refraction diffuse mapping diffuse reflection reflection filter mapping mapping reflection Matières 1 2 3 mapping diffuse reflection diffuse transparency reflection refraction diffuse mapping diffuse reflection diffuse reflection filter mapping bump mapping mapping mapping diffuse reflection

More information

SNC2D PHYSICS 4/27/2013. LIGHT & GEOMETRIC OPTICS L Light Rays & Reflection (P ) Light Rays & Reflection. The Ray Model of Light

SNC2D PHYSICS 4/27/2013. LIGHT & GEOMETRIC OPTICS L Light Rays & Reflection (P ) Light Rays & Reflection. The Ray Model of Light SNC2D PHYSICS LIGHT & GEOMETRIC OPTICS L Light Rays & Reflection (P.402-409) Light Rays & Reflection A driver adjusts her rearview mirror. The mirror allows her to see the cars behind her. Mirrors help

More information

Visualisatie BMT. Rendering. Arjan Kok

Visualisatie BMT. Rendering. Arjan Kok Visualisatie BMT Rendering Arjan Kok a.j.f.kok@tue.nl 1 Lecture overview Color Rendering Illumination 2 Visualization pipeline Raw Data Data Enrichment/Enhancement Derived Data Visualization Mapping Abstract

More information

Shading. Brian Curless CSE 557 Autumn 2017

Shading. Brian Curless CSE 557 Autumn 2017 Shading Brian Curless CSE 557 Autumn 2017 1 Reading Optional: Angel and Shreiner: chapter 5. Marschner and Shirley: chapter 10, chapter 17. Further reading: OpenGL red book, chapter 5. 2 Basic 3D graphics

More information

Comp 410/510 Computer Graphics. Spring Shading

Comp 410/510 Computer Graphics. Spring Shading Comp 410/510 Computer Graphics Spring 2017 Shading Why we need shading Suppose we build a model of a sphere using many polygons and then color it using a fixed color. We get something like But we rather

More information

Computer Graphics (CS 4731) Lecture 16: Lighting, Shading and Materials (Part 1)

Computer Graphics (CS 4731) Lecture 16: Lighting, Shading and Materials (Part 1) Computer Graphics (CS 4731) Lecture 16: Lighting, Shading and Materials (Part 1) Prof Emmanuel Agu Computer Science Dept. Worcester Polytechnic Institute (WPI) Why do we need Lighting & shading? Sphere

More information

Illumination and Shading

Illumination and Shading Illumination and Shading Computer Graphics COMP 770 (236) Spring 2007 Instructor: Brandon Lloyd 2/14/07 1 From last time Texture mapping overview notation wrapping Perspective-correct interpolation Texture

More information

When light strikes an object there are different ways it can be affected. Light can be

When light strikes an object there are different ways it can be affected. Light can be When light strikes an object there are different ways it can be affected. Light can be transmitted, reflected, refracted, and absorbed, It depends on the type of matter that it strikes. For example light

More information

Color and Light. CSCI 4229/5229 Computer Graphics Summer 2008

Color and Light. CSCI 4229/5229 Computer Graphics Summer 2008 Color and Light CSCI 4229/5229 Computer Graphics Summer 2008 Solar Spectrum Human Trichromatic Color Perception Are A and B the same? Color perception is relative Transmission,Absorption&Reflection Light

More information

Computer Graphics. Illumination and Shading

Computer Graphics. Illumination and Shading () Illumination and Shading Dr. Ayman Eldeib Lighting So given a 3-D triangle and a 3-D viewpoint, we can set the right pixels But what color should those pixels be? If we re attempting to create a realistic

More information

Computer Graphics (CS 543) Lecture 7b: Intro to lighting, Shading and Materials + Phong Lighting Model

Computer Graphics (CS 543) Lecture 7b: Intro to lighting, Shading and Materials + Phong Lighting Model Computer Graphics (CS 543) Lecture 7b: Intro to lighting, Shading and Materials + Phong Lighting Model Prof Emmanuel Agu Computer Science Dept. Worcester Polytechnic Institute (WPI) Why do we need Lighting

More information

Lighting. To do. Course Outline. This Lecture. Continue to work on ray programming assignment Start thinking about final project

Lighting. To do. Course Outline. This Lecture. Continue to work on ray programming assignment Start thinking about final project To do Continue to work on ray programming assignment Start thinking about final project Lighting Course Outline 3D Graphics Pipeline Modeling (Creating 3D Geometry) Mesh; modeling; sampling; Interaction

More information

The Rendering Equation. Computer Graphics CMU /15-662

The Rendering Equation. Computer Graphics CMU /15-662 The Rendering Equation Computer Graphics CMU 15-462/15-662 Review: What is radiance? Radiance at point p in direction N is radiant energy ( #hits ) per unit time, per solid angle, per unit area perpendicular

More information

CSE 167: Lecture #7: Color and Shading. Jürgen P. Schulze, Ph.D. University of California, San Diego Fall Quarter 2011

CSE 167: Lecture #7: Color and Shading. Jürgen P. Schulze, Ph.D. University of California, San Diego Fall Quarter 2011 CSE 167: Introduction to Computer Graphics Lecture #7: Color and Shading Jürgen P. Schulze, Ph.D. University of California, San Diego Fall Quarter 2011 Announcements Homework project #3 due this Friday,

More information

Color and Light CSCI 4229/5229 Computer Graphics Fall 2016

Color and Light CSCI 4229/5229 Computer Graphics Fall 2016 Color and Light CSCI 4229/5229 Computer Graphics Fall 2016 Solar Spectrum Human Trichromatic Color Perception Color Blindness Present to some degree in 8% of males and about 0.5% of females due to mutation

More information

PHYSICALLY BASED RENDERING FOR 3DSMAX LIGHTWORKS IRAY + FOR 3DSMAX CASSIE THIBODEAU - NVIDIA PETER DE LAPPE NVIDIA DAVID COLDRON - LIGHTWORKS

PHYSICALLY BASED RENDERING FOR 3DSMAX LIGHTWORKS IRAY + FOR 3DSMAX CASSIE THIBODEAU - NVIDIA PETER DE LAPPE NVIDIA DAVID COLDRON - LIGHTWORKS Webinar: Photorealistic visualization with Speed and Ease Using Iray+ for Autodesk 3ds Max PHYSICALLY BASED RENDERING FOR 3DSMAX LIGHTWORKS IRAY + FOR 3DSMAX CASSIE THIBODEAU - NVIDIA PETER DE LAPPE NVIDIA

More information

CMSC427 Shading Intro. Credit: slides from Dr. Zwicker

CMSC427 Shading Intro. Credit: slides from Dr. Zwicker CMSC427 Shading Intro Credit: slides from Dr. Zwicker 2 Today Shading Introduction Radiometry & BRDFs Local shading models Light sources Shading strategies Shading Compute interaction of light with surfaces

More information

Ray Optics. Lecture 23. Chapter 23. Physics II. Course website:

Ray Optics. Lecture 23. Chapter 23. Physics II. Course website: Lecture 23 Chapter 23 Physics II Ray Optics Course website: http://faculty.uml.edu/andriy_danylov/teaching/physicsii Let s finish talking about a diffraction grating Diffraction Grating Let s improve (more

More information

Extending the Disney BRDF to a BSDF with Integrated Subsurface Scattering. Brent Burley Walt Disney Animation Studios

Extending the Disney BRDF to a BSDF with Integrated Subsurface Scattering. Brent Burley Walt Disney Animation Studios The 42nd International Conference and Exhibition on Computer Graphics and Interactive Techniques Extending the Disney BRDF to a BSDF with Integrated Subsurface Scattering Brent Burley Walt Disney Animation

More information

Lighting and Materials

Lighting and Materials http://graphics.ucsd.edu/~henrik/images/global.html Lighting and Materials Introduction The goal of any graphics rendering app is to simulate light Trying to convince the viewer they are seeing the real

More information

ECS 175 COMPUTER GRAPHICS. Ken Joy.! Winter 2014

ECS 175 COMPUTER GRAPHICS. Ken Joy.! Winter 2014 ECS 175 COMPUTER GRAPHICS Ken Joy Winter 2014 Shading To be able to model shading, we simplify Uniform Media no scattering of light Opaque Objects No Interreflection Point Light Sources RGB Color (eliminating

More information

2/26/2016. Chapter 23 Ray Optics. Chapter 23 Preview. Chapter 23 Preview

2/26/2016. Chapter 23 Ray Optics. Chapter 23 Preview. Chapter 23 Preview Chapter 23 Ray Optics Chapter Goal: To understand and apply the ray model of light. Slide 23-2 Chapter 23 Preview Slide 23-3 Chapter 23 Preview Slide 23-4 1 Chapter 23 Preview Slide 23-5 Chapter 23 Preview

More information

Shading & Material Appearance

Shading & Material Appearance Shading & Material Appearance ACM. All rights reserved. This content is excluded from our Creative Commons license. For more information, see http://ocw.mit.edu/help/faq-fair-use/. MIT EECS 6.837 Matusik

More information

CSE 167: Introduction to Computer Graphics Lecture #6: Lights. Jürgen P. Schulze, Ph.D. University of California, San Diego Fall Quarter 2016

CSE 167: Introduction to Computer Graphics Lecture #6: Lights. Jürgen P. Schulze, Ph.D. University of California, San Diego Fall Quarter 2016 CSE 167: Introduction to Computer Graphics Lecture #6: Lights Jürgen P. Schulze, Ph.D. University of California, San Diego Fall Quarter 2016 Announcements Thursday in class: midterm #1 Closed book Material

More information

Computer Graphics. Ray Tracing. Based on slides by Dianna Xu, Bryn Mawr College

Computer Graphics. Ray Tracing. Based on slides by Dianna Xu, Bryn Mawr College Computer Graphics Ray Tracing Based on slides by Dianna Xu, Bryn Mawr College Ray Tracing Example Created by Anto Matkovic Ray Tracing Example Ray Tracing Example Ray Tracing Most light rays do not reach

More information

Ray Tracing: Special Topics CSCI 4239/5239 Advanced Computer Graphics Spring 2018

Ray Tracing: Special Topics CSCI 4239/5239 Advanced Computer Graphics Spring 2018 Ray Tracing: Special Topics CSCI 4239/5239 Advanced Computer Graphics Spring 2018 Theoretical foundations Ray Tracing from the Ground Up Chapters 13-15 Bidirectional Reflectance Distribution Function BRDF

More information

Global Illumination. CSCI 420 Computer Graphics Lecture 18. BRDFs Raytracing and Radiosity Subsurface Scattering Photon Mapping [Ch

Global Illumination. CSCI 420 Computer Graphics Lecture 18. BRDFs Raytracing and Radiosity Subsurface Scattering Photon Mapping [Ch CSCI 420 Computer Graphics Lecture 18 Global Illumination Jernej Barbic University of Southern California BRDFs Raytracing and Radiosity Subsurface Scattering Photon Mapping [Ch. 13.4-13.5] 1 Global Illumination

More information

Hot Sync. Materials Needed Today

Hot Sync. Materials Needed Today Chapter 11 Lesson 2 Materials Needed Today Please take these materials out of your backpack. Pencil Blank sheet of paper for a lab! Hot Sync Thursday 3/27/14 After learning how light acts. Write a new

More information

Global Illumination. Global Illumination. Direct Illumination vs. Global Illumination. Indirect Illumination. Soft Shadows.

Global Illumination. Global Illumination. Direct Illumination vs. Global Illumination. Indirect Illumination. Soft Shadows. CSCI 420 Computer Graphics Lecture 18 Global Illumination Jernej Barbic University of Southern California BRDFs Raytracing and Radiosity Subsurface Scattering Photon Mapping [Angel Ch. 11] 1 Global Illumination

More information

Illumination & Shading

Illumination & Shading Illumination & Shading Goals Introduce the types of light-material interactions Build a simple reflection model---the Phong model--- that can be used with real time graphics hardware Why we need Illumination

More information

Global Illumination. Global Illumination. Direct Illumination vs. Global Illumination. Indirect Illumination. Soft Shadows.

Global Illumination. Global Illumination. Direct Illumination vs. Global Illumination. Indirect Illumination. Soft Shadows. CSCI 480 Computer Graphics Lecture 18 Global Illumination BRDFs Raytracing and Radiosity Subsurface Scattering Photon Mapping [Ch. 13.4-13.5] March 28, 2012 Jernej Barbic University of Southern California

More information

WHY WE NEED SHADING. Suppose we build a model of a sphere using many polygons and color it with glcolor. We get something like.

WHY WE NEED SHADING. Suppose we build a model of a sphere using many polygons and color it with glcolor. We get something like. LIGHTING 1 OUTLINE Learn to light/shade objects so their images appear three-dimensional Introduce the types of light-material interactions Build a simple reflection model---the Phong model--- that can

More information

Lighting affects appearance

Lighting affects appearance Lighting affects appearance 1 Source emits photons Light And then some reach the eye/camera. Photons travel in a straight line When they hit an object they: bounce off in a new direction or are absorbed

More information

CS230 : Computer Graphics Lighting and Shading. Tamar Shinar Computer Science & Engineering UC Riverside

CS230 : Computer Graphics Lighting and Shading. Tamar Shinar Computer Science & Engineering UC Riverside CS230 : Computer Graphics Lighting and Shading Tamar Shinar Computer Science & Engineering UC Riverside General light source Illumination function: [Angel and Shreiner] integrate contributions from all

More information

Computer Graphics. Shading. Based on slides by Dianna Xu, Bryn Mawr College

Computer Graphics. Shading. Based on slides by Dianna Xu, Bryn Mawr College Computer Graphics Shading Based on slides by Dianna Xu, Bryn Mawr College Image Synthesis and Shading Perception of 3D Objects Displays almost always 2 dimensional. Depth cues needed to restore the third

More information

1.! Questions about reflected intensity. [Use the formulas on p. 8 of Light.] , no matter

1.! Questions about reflected intensity. [Use the formulas on p. 8 of Light.] , no matter Reading: Light Key concepts: Huygens s principle; reflection; refraction; reflectivity; total reflection; Brewster angle; polarization by absorption, reflection and Rayleigh scattering. 1.! Questions about

More information

Lighting affects appearance

Lighting affects appearance Lighting affects appearance 1 Source emits photons Light And then some reach the eye/camera. Photons travel in a straight line When they hit an object they: bounce off in a new direction or are absorbed

More information

Timothy Walsh. Reflection Models

Timothy Walsh. Reflection Models Timothy Walsh Reflection Models Outline Reflection Models Geometric Setting Fresnel Reflectance Specular Refletance & Transmission Microfacet Models Lafortune Model Fresnel Incidence Effects Diffuse Scatter

More information

Illumination & Shading: Part 1

Illumination & Shading: Part 1 Illumination & Shading: Part 1 Light Sources Empirical Illumination Shading Local vs Global Illumination Lecture 10 Comp 236 Spring 2005 Computer Graphics Jargon: Illumination Models Illumination - the

More information

Global Illumination. Why Global Illumination. Pros/Cons and Applications. What s Global Illumination

Global Illumination. Why Global Illumination. Pros/Cons and Applications. What s Global Illumination Global Illumination Why Global Illumination Last lecture Basic rendering concepts Primitive-based rendering Today: Global illumination Ray Tracing, and Radiosity (Light-based rendering) What s Global Illumination

More information

Shading. Why we need shading. Scattering. Shading. Objectives

Shading. Why we need shading. Scattering. Shading. Objectives Shading Why we need shading Objectives Learn to shade objects so their images appear three-dimensional Suppose we build a model of a sphere using many polygons and color it with glcolor. We get something

More information

Chapter 5- Materials & Textures

Chapter 5- Materials & Textures Chapter 5- Materials & Textures As mentioned in the past chapter, materials and textures are what change your model from being gray to brilliant. You can add color, make things glow, become transparent

More information

OpenGl Pipeline. triangles, lines, points, images. Per-vertex ops. Primitive assembly. Texturing. Rasterization. Per-fragment ops.

OpenGl Pipeline. triangles, lines, points, images. Per-vertex ops. Primitive assembly. Texturing. Rasterization. Per-fragment ops. OpenGl Pipeline Individual Vertices Transformed Vertices Commands Processor Per-vertex ops Primitive assembly triangles, lines, points, images Primitives Fragments Rasterization Texturing Per-fragment

More information

Shading. Reading. Pinhole camera. Basic 3D graphics. Brian Curless CSE 557 Fall Required: Shirley, Chapter 10

Shading. Reading. Pinhole camera. Basic 3D graphics. Brian Curless CSE 557 Fall Required: Shirley, Chapter 10 Reading Required: Shirley, Chapter 10 Shading Brian Curless CSE 557 Fall 2014 1 2 Basic 3D graphics With affine matrices, we can now transform virtual 3D objects in their local coordinate systems into

More information

UNIT C: LIGHT AND OPTICAL SYSTEMS

UNIT C: LIGHT AND OPTICAL SYSTEMS 1 UNIT C: LIGHT AND OPTICAL SYSTEMS Science 8 2 LIGHT BEHAVES IN PREDICTABLE WAYS. Section 2.0 1 3 LIGHT TRAVELS IN RAYS AND INTERACTS WITH MATERIALS Topic 2.1 RAY DIAGRAMS Scientists use ray diagrams

More information

Introduction. Chapter Computer Graphics

Introduction. Chapter Computer Graphics Chapter 1 Introduction 1.1. Computer Graphics Computer graphics has grown at an astounding rate over the last three decades. In the 1970s, frame-buffers capable of displaying digital images were rare and

More information

What is it? How does it work? How do we use it?

What is it? How does it work? How do we use it? What is it? How does it work? How do we use it? Dual Nature http://www.youtube.com/watch?v=dfpeprq7ogc o Electromagnetic Waves display wave behavior o Created by oscillating electric and magnetic fields

More information

SIMLAB RT1.0 O F F I C I A L U S E R S M A N U A L

SIMLAB RT1.0 O F F I C I A L U S E R S M A N U A L SIMLAB RT1.0 O F F I C I A L U S E R S M A N U A L O f f i c i a l U s e r s M a n u a l 1 CONTENTS MATERIALS... 5 INTRODUCTION 5 DIELECTRIC MATERIAL 6 Usage 6 Sample Result 6 Parameters 7 Examples 7 THIN

More information

Local Illumination. CMPT 361 Introduction to Computer Graphics Torsten Möller. Machiraju/Zhang/Möller

Local Illumination. CMPT 361 Introduction to Computer Graphics Torsten Möller. Machiraju/Zhang/Möller Local Illumination CMPT 361 Introduction to Computer Graphics Torsten Möller Graphics Pipeline Hardware Modelling Transform Visibility Illumination + Shading Perception, Interaction Color Texture/ Realism

More information

Texture Mapping. Images from 3D Creative Magazine

Texture Mapping. Images from 3D Creative Magazine Texture Mapping Images from 3D Creative Magazine Contents Introduction Definitions Light And Colour Surface Attributes Surface Attributes: Colour Surface Attributes: Shininess Surface Attributes: Specularity

More information

3DEXCITE DELTAGEN 2018x. Stellar Conversion Guide

3DEXCITE DELTAGEN 2018x. Stellar Conversion Guide 3DEXCITE DELTAGEN 2018x Stellar Conversion Guide INTRODUCTION After switching from Look renderer to Stellar renderer the initial Conversion Material is just the first automatic step to transfer Look material

More information

Advanced Graphics. Path Tracing and Photon Mapping Part 2. Path Tracing and Photon Mapping

Advanced Graphics. Path Tracing and Photon Mapping Part 2. Path Tracing and Photon Mapping Advanced Graphics Path Tracing and Photon Mapping Part 2 Path Tracing and Photon Mapping Importance Sampling Combine importance sampling techniques Reflectance function (diffuse + specular) Light source

More information

Understanding Visual Performance A Pacific Energy Center Factsheet

Understanding Visual Performance A Pacific Energy Center Factsheet Understanding Visual Performance A Pacific Energy Center Factsheet Factors Affecting Visual Performance Our ability to perform a visual task depends on how well our eyes perceive the details of the task.

More information

Topic 9: Lighting & Reflection models 9/10/2016. Spot the differences. Terminology. Two Components of Illumination. Ambient Light Source

Topic 9: Lighting & Reflection models 9/10/2016. Spot the differences. Terminology. Two Components of Illumination. Ambient Light Source Topic 9: Lighting & Reflection models Lighting & reflection The Phong reflection model diffuse component ambient component specular component Spot the differences Terminology Illumination The transport

More information

Property of: Entrada Interactive. PBR Workflow. Working within a PBR-based environment

Property of: Entrada Interactive. PBR Workflow. Working within a PBR-based environment Property of: Entrada Interactive PBR Workflow Working within a PBR-based environment Ryan Manning 8/24/2014 MISCREATED PBR WORKFLOW CryDocs on Physically Based Shading/Rendering: http://docs.cryengine.com/display/sdkdoc4/physically+based+rendering

More information

Rendering: Reality. Eye acts as pinhole camera. Photons from light hit objects

Rendering: Reality. Eye acts as pinhole camera. Photons from light hit objects Basic Ray Tracing Rendering: Reality Eye acts as pinhole camera Photons from light hit objects Rendering: Reality Eye acts as pinhole camera Photons from light hit objects Rendering: Reality Eye acts as

More information

Topic 9: Lighting & Reflection models. Lighting & reflection The Phong reflection model diffuse component ambient component specular component

Topic 9: Lighting & Reflection models. Lighting & reflection The Phong reflection model diffuse component ambient component specular component Topic 9: Lighting & Reflection models Lighting & reflection The Phong reflection model diffuse component ambient component specular component Spot the differences Terminology Illumination The transport

More information

A Quick Introduction to POV-Ray

A Quick Introduction to POV-Ray A Quick Introduction to POV-Ray POV-Ray, the Persistence of Vision ray tracer, is open source software available from www.povray.org. This is good, highly functional software that you might enjoy playing

More information

Modeling Custom Surface Roughness with LucidShape 2D Scatter Curve BSDF Material

Modeling Custom Surface Roughness with LucidShape 2D Scatter Curve BSDF Material WHITE PAPER Modeling Custom Surface Roughness with LucidShape 2D Scatter Curve BSDF Material Author Andreas Bielawny, Ph.D. CAE Synopsys, Inc. Abstract LucidShape accurately simulates how light interacts

More information

The branch of physics which studies light

The branch of physics which studies light Mr.V The branch of physics which studies light Geometric model XVI century by W Snell Wave Model XIX century by JC Maxwell Photon Model XX century by Planck, Einstein Models of Light Basic Concept Laws

More information

Render - Cycles Render Engine - Nodes

Render - Cycles Render Engine - Nodes 10.3.4 Render - Cycles Render Engine - Nodes Introduction...2 Shaders...2 Textures...3 More...3 Open Shading Language...3 Input Nodes...3 Camera Data...3 Value...3 RGB...3 Attribute...4 Wireframe...4 Geometry...4

More information

Raytracing CS148 AS3. Due :59pm PDT

Raytracing CS148 AS3. Due :59pm PDT Raytracing CS148 AS3 Due 2010-07-25 11:59pm PDT We start our exploration of Rendering - the process of converting a high-level object-based description of scene into an image. We will do this by building

More information

PHYSICS. Chapter 34 Lecture FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E RANDALL D. KNIGHT

PHYSICS. Chapter 34 Lecture FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E RANDALL D. KNIGHT PHYSICS FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E Chapter 34 Lecture RANDALL D. KNIGHT Chapter 34 Ray Optics IN THIS CHAPTER, you will learn about and apply the ray model of light Slide 34-2

More information

CS5620 Intro to Computer Graphics

CS5620 Intro to Computer Graphics So Far wireframe hidden surfaces Next step 1 2 Light! Need to understand: How lighting works Types of lights Types of surfaces How shading works Shading algorithms What s Missing? Lighting vs. Shading

More information

C O M P U T E R G R A P H I C S. Computer Graphics. Three-Dimensional Graphics V. Guoying Zhao 1 / 65

C O M P U T E R G R A P H I C S. Computer Graphics. Three-Dimensional Graphics V. Guoying Zhao 1 / 65 Computer Graphics Three-Dimensional Graphics V Guoying Zhao 1 / 65 Shading Guoying Zhao 2 / 65 Objectives Learn to shade objects so their images appear three-dimensional Introduce the types of light-material

More information

Computer graphics Labs: Blender (2/3) LuxRender: Interior Scene Rendering

Computer graphics Labs: Blender (2/3) LuxRender: Interior Scene Rendering Computer graphics Labs: Blender (2/3) LuxRender: Interior Scene Rendering University of Liège Department of Aerospace and Mechanical engineering Designed with Blender 2.76b LuxRender During the first tutorial

More information

Sung-Eui Yoon ( 윤성의 )

Sung-Eui Yoon ( 윤성의 ) CS380: Computer Graphics Illumination and Shading Sung-Eui Yoon ( 윤성의 ) Course URL: http://sglab.kaist.ac.kr/~sungeui/cg/ Course Objectives (Ch. 10) Know how to consider lights during rendering models

More information

SCIENCE 8 WORKBOOK. Chapter 5 Light Optics (Section 1) Ms. Jamieson This workbook belongs to:

SCIENCE 8 WORKBOOK. Chapter 5 Light Optics (Section 1) Ms. Jamieson This workbook belongs to: SCIENCE 8 WORKBOOK Chapter 5 Light Optics (Section 1) Ms. Jamieson 2018 This workbook belongs to: Eric Hamber Secondary 5025 Willow Street Vancouver, BC Table of Contents A. Chapter 5.1 - The Ray Model

More information

Chapter 17: The Truth about Normals

Chapter 17: The Truth about Normals Chapter 17: The Truth about Normals What are Normals? When I first started with Blender I read about normals everywhere, but all I knew about them was: If there are weird black spots on your object, go

More information

Reflection and Shading

Reflection and Shading Reflection and Shading R. J. Renka Department of Computer Science & Engineering University of North Texas 10/19/2015 Light Sources Realistic rendering requires that we model the interaction between light

More information

Lecture 4: Reflection Models

Lecture 4: Reflection Models Lecture 4: Reflection Models CS 660, Spring 009 Kavita Bala Computer Science Cornell University Outline Light sources Light source characteristics Types of sources Light reflection Physics-based models

More information

Michelson Interferometer

Michelson Interferometer Michelson Interferometer The Michelson interferometer uses the interference of two reflected waves The third, beamsplitting, mirror is partially reflecting ( half silvered, except it s a thin Aluminum

More information

Basic Rendering Techniques Part B

Basic Rendering Techniques Part B Basic Rendering Techniques Part B Using Materials in 3d Max The simplest method for changing g the default gray color of a 3d object is to apply hue to the object using the diffuse color feature. The physical

More information

Today. Global illumination. Shading. Interactive applications. Rendering pipeline. Computergrafik. Shading Introduction Local shading models

Today. Global illumination. Shading. Interactive applications. Rendering pipeline. Computergrafik. Shading Introduction Local shading models Computergrafik Matthias Zwicker Universität Bern Herbst 2009 Today Introduction Local shading models Light sources strategies Compute interaction of light with surfaces Requires simulation of physics Global

More information

Light Introduction. Read this article for more background information:

Light Introduction. Read this article for more background information: Light Introduction Read this article for more background information: Color Absorption Article Watch the following video on terms like Absorption, Reflection, and Transmission Video 1 Waves 1 Stephanie

More information

Today. Global illumination. Shading. Interactive applications. Rendering pipeline. Computergrafik. Shading Introduction Local shading models

Today. Global illumination. Shading. Interactive applications. Rendering pipeline. Computergrafik. Shading Introduction Local shading models Computergrafik Thomas Buchberger, Matthias Zwicker Universität Bern Herbst 2008 Today Introduction Local shading models Light sources strategies Compute interaction of light with surfaces Requires simulation

More information

Illumination. The slides combine material from Andy van Dam, Spike Hughes, Travis Webb and Lyn Fong

Illumination. The slides combine material from Andy van Dam, Spike Hughes, Travis Webb and Lyn Fong INTRODUCTION TO COMPUTER GRAPHIC S Illumination The slides combine material from Andy van Dam, Spike Hughes, Travis Webb and Lyn Fong Andries van Dam October 29, 2009 Illumination Models 1/30 Outline Physical

More information

Homework #2. Shading, Ray Tracing, and Texture Mapping

Homework #2. Shading, Ray Tracing, and Texture Mapping Computer Graphics Prof. Brian Curless CSE 457 Spring 2000 Homework #2 Shading, Ray Tracing, and Texture Mapping Prepared by: Doug Johnson, Maya Widyasari, and Brian Curless Assigned: Monday, May 8, 2000

More information

Computer Graphics. Illumination and Shading

Computer Graphics. Illumination and Shading Rendering Pipeline modelling of geometry transformation into world coordinates placement of cameras and light sources transformation into camera coordinates backface culling projection clipping w.r.t.

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

CENG 477 Introduction to Computer Graphics. Ray Tracing: Shading

CENG 477 Introduction to Computer Graphics. Ray Tracing: Shading CENG 477 Introduction to Computer Graphics Ray Tracing: Shading Last Week Until now we learned: How to create the primary rays from the given camera and image plane parameters How to intersect these rays

More information

Imaging Sphere Measurement of Luminous Intensity, View Angle, and Scatter Distribution Functions

Imaging Sphere Measurement of Luminous Intensity, View Angle, and Scatter Distribution Functions Imaging Sphere Measurement of Luminous Intensity, View Angle, and Scatter Distribution Functions Hubert Kostal, Vice President of Sales and Marketing Radiant Imaging, Inc. 22908 NE Alder Crest Drive, Suite

More information

CEng 477 Introduction to Computer Graphics Fall

CEng 477 Introduction to Computer Graphics Fall Illumination Models and Surface-Rendering Methods CEng 477 Introduction to Computer Graphics Fall 2007 2008 Illumination Models and Surface Rendering Methods In order to achieve realism in computer generated

More information