SoMaterial Class Reference
[Lights & colors]

Surface material definition node. More...

#include <Inventor/nodes/SoMaterial.h>

Inheritance diagram for SoMaterial:
SoNode SoFieldContainer SoBase SoRefCounter SoTypedObject

List of all members.

Public Member Functions

virtual SoType getTypeId () const
 SoMaterial ()
virtual void setOverride (const SbBool state)
virtual SbBool isOverride () const

Static Public Member Functions

static SoType getClassTypeId ()

Public Attributes

SoMFColor ambientColor
SoMFColor diffuseColor
SoMFColor specularColor
SoMFColor emissiveColor
SoMFFloat shininess
SoMFFloat transparency
SoSFBool receiveShadow
SoMFColor reflectiveColor

Detailed Description

Surface material definition node.

This node defines the current surface material properties for all subsequent shapes. SoMaterial sets several components of the current material during traversal. The ambientColor, diffuseColor, emissiveColor, specularColor and shininess fields are interpreted according to the classic OpenGL lighting model. The transparency field is effectively the inverse of "opacity" or "alpha value".

If lighting is turned off (SoLightModel set to BASE_COLOR), only the diffuse color and transparency fields are used to render geometry.

Multiple values can be specified for the diffuseColor and transparency fields. Different shapes interpret materials with multiple values differently. To bind materials to shapes, use an SoMaterialBinding node.

Several other nodes can be used to set diffuse color and transparency.

If the other color values are not needed, these nodes use a little less memory than an SoMaterial node, especially if multiple color values are specified. Generally SoVertexProperty is the most efficient mechanism and may provide better performance than using SoMaterial. Note that for these nodes transparency is set as "alpha value" (inverse of transparency).
  • Diffuse color (only) can also be specified using an SoBaseColor node.
  • Diffuse color and transparency can also be specified using an SoPackedColor node.
  • Diffuse color and transparency can also be specified for polygonal geometry using the orderedRGBA field of SoVertexProperty.

Lighting and material RGB values:

The color components specified for lights mean something different than for materials. For a light, the numbers correspond to a percentage of full intensity for each color. If the R, G, and B values for a light's color are all 1.0, the light is the brightest possible white. If the values are 0.5, the color is still white, but only at half intensity, so it appears gray. If R=G=1 and B=0 (full red and green with no blue), the light appears yellow. The intensity can also be modulated using the SoLight::intensity field.
For materials, the numbers correspond to the reflected percentages of those colors. So if R=1, G=0.5, and B=0 for a material, that material reflects all the incoming red light, half the incoming green, and none of the incoming blue light. In other words, if an OpenGL light has components (LR, LG, LB), and a material has corresponding components (MR, MG, MB), then, ignoring all other reflectivity effects, the light that arrives at the eye is given by (LR*MR, LG*MG, LB*MB). As a result, for example, shining a pure blue light on a pure red cone has no visible effect.
Similarly, if you have two lights that send (R1, G1, B1) and (R2, G2, B2) to the eye, the components are added, giving (R1+R2, G1+G2, B1+B2). If any of the sums are greater than 1 (corresponding to a color brighter than the hardware can display), the component is clamped to 1.

Override material:

To force all geometry following/below this node to use specific color and transparency values, call the setOverride() method with true. Overriding the diffuse color and transparency overrides the color and transparency values in other nodes including SoPackedColor and SoVertexProperty. This can be useful, for example, to highlight a selected object.
It is also possible to override only a subset of the SoMaterial fields. If, for example, you only want to override the diffuse color, but not the other values, call setIgnored(true) on the fields that you do not want to override. But note that this selective override technique only works on other SoMaterial nodes! For SoPackedColor and SoVertexProperty, the diffuseColor and transparency values are bound together and cannot be overridden separately. If you want, for example, to force transparency to 0 (making all geometry opaque), use an SoTransparencyType node with the type field set to NO_TRANSPARENCY.

Transparency:

The default transparency algorithm is SCREEN_DOOR. To get a nice appearance for transparent objects you must change this to another value, for example, BLEND or DELAYED_BLEND, using the setTransparencyType method in the Viewer class or using an SoTransparencyType node. See SoGLRenderAction for a discussion of transparency algorithms and rendering order.

FILE FORMAT/DEFAULT

ACTION BEHAVIOR

SEE ALSO

SoBaseColor, SoLightModel, SoMaterialBinding, SoPackedColor, SoVertexProperty, SoDirectVizManager


Constructor & Destructor Documentation

SoMaterial::SoMaterial (  ) 

Creates a material node with default settings.


Member Function Documentation

static SoType SoMaterial::getClassTypeId (  )  [static]

Returns the type identifier for this class.

Reimplemented from SoNode.

virtual SoType SoMaterial::getTypeId (  )  const [virtual]

Returns the type identifier for this specific instance.

Reimplemented from SoNode.

virtual SbBool SoMaterial::isOverride (  )  const [inline, virtual]

Returns the state of the override field.

Reimplemented from SoNode.

virtual void SoMaterial::setOverride ( const SbBool  state  )  [inline, virtual]

Set the state of the override field.

see SoNode::setOverride doc.

Reimplemented from SoNode.


Member Data Documentation

Ambient color of the surface.

Default is 0.2 0.2 0.2.

Ambient reflectance affects the overall color of the object. Because diffuse reflectance is brightest where an object is directly illuminated, ambient reflectance is most noticeable where an object receives no direct illumination. An object's total ambient reflectance is affected by the global ambient light (see SoEnvironment) and ambient light from individual light sources. Like diffuse reflectance, ambient reflectance is not affected by the position of the camera.

Diffuse color(s) of the surface.

Default is 0.8 0.8 0.8.

Diffuse reflectance plays the most important role in determining the appearance of an object. It's affected by the color of the incident light(s) and the angle of each incident light relative to the object's normal direction. (It's most intense where the incident light falls perpendicular to the surface.) The position of the camera doesn't affect diffuse reflectance at all.

Emissive color of the surface.

Default is 0 0 0.

Emissive color makes an object appear to be giving off light of that color, independent of any lights (or lack of lights) in the scene. It can be useful for highlighting selected objects in the scene.

DirectViz rendering only.

Specifies that all the shapes using this material node will receive shadows from other shapes when rendering using DirectViz.

NOTE: field available since Open Inventor 6.1

DirectViz rendering only.

Specifies the reflective color of the shape. When set to black (0,0,0), the object is not reflective. To simulate a perfect mirror, the reflectiveColor should be set to white (1, 1, 1), and all other color field values to black (0, 0, 0). The reflective component is added to the overall color of the object.

NOTE: field available since Open Inventor 6.1

Shininess coefficient of the surface.

Values can range from 0.0 to 1.0. Default is 0.2.

The dot product of the vector reflected by the surface normal and the inverted light vector is raised to the "Shininess" power. The higher the shininess number, the smaller the resulting specular highlight turns out to be.

Specular color of the surface.

Default is 0 0 0.

Specular reflection from an object produces highlights. Unlike ambient and diffuse reflection, the amount of specular reflection does depend on the location of the camera - it's brightest along the direct angle of reflection. To see this, imagine looking at a metallic ball outdoors in the sunlight. As you move your head, the highlight created by the sunlight moves with you to some extent. However, if you move your head too much, you lose the highlight entirely.

This field specifies the color of the reflected light. The shininess field controls the size and brightness of the highlight.

Transparency value(s) of the surface.

Values can range from 0.0 for opaque surfaces to 1.0 for completely transparent surfaces. Default is 0 (opaque).

If the transparency type is SoGLRenderAction::SCREEN_DOOR then only the first transparency value will be used (See SoGLRenderAction::SCREEN_DOOR description). With other transparency types, multiple transparencies will be used, if the SoMaterial node contains as many transparencies as diffuse colors. If there are not as many transparencies as diffuse colors, only the first transparency will be used.

Transparency is the inverse of "opacity" or "alpha" value.


The documentation for this class was generated from the following file:

Open Inventor by FEI reference manual, generated on 19 Aug 2019
Copyright © FEI S.A.S. All rights reserved.
http://www.openinventor.com/