man SoEnvironment () - global environment node

NAME

SoEnvironment - global environment node

INHERITS FROM

SoBase > SoFieldContainer > SoNode > SoEnvironment

SYNOPSIS

#include <Inventor/nodes/SoEnvironment.h> enum FogType { c } c } No fog

c } c } Linear increase in opacity with distance

c } c } Exponential increase in opacity

c } c } Exponential squared increase in opacity

} Fields from class SoEnvironment: c } c } ambientIntensity

c } c } ambientColor

c } c } attenuation

c } c } fogType

c } c } fogColor

c } c } fogVisibility Methods from class SoEnvironment: c } c } SoEnvironment()

c } c } getClassTypeId() Methods from class SoNode: c } c } setOverride(SbBool state)

c } c } isOverride() const

c } c } copy(SbBool copyConnections = FALSE) const

c } c } affectsState() const

c } c } getByName(const SbName &name)

c } c } getByName(const SbName &name, SoNodeList &list) Methods from class SoFieldContainer: c } c } setToDefaults()

c } c } hasDefaultValues() const

c } c } fieldsAreEqual(const SoFieldContainer *fc) const

c } c } copyFieldValues(const SoFieldContainer *fc, SbBool copyConnections = FALSE)

c } c } set(const char *fieldDataString)

c } c } get(SbString &fieldDataString)

c } c } getFields(SoFieldList &resultList) const

c } c } getField(const SbName &fieldName) const

c } c } getFieldName(const SoField *field, SbName &fieldName) const

c } c } isNotifyEnabled() const

c } c } enableNotify(SbBool flag) Methods from class SoBase: c } c } ref()

c } c } unref() const

c } c } unrefNoDelete() const

c } c } touch()

c } c } getTypeId() const

c } c } isOfType(SoType type) const

c } c } setName(const SbName &name)

c } c } getName() const

DESCRIPTION

This node describes global environmental attributes such as ambient lighting, light attenuation, and fog. Ambient lighting is the amount of extra light impinging on each surface point when the lighting model is Phong (see SoLightModel). Light attenuation affects all subsequent lights in a scene (see SoLight). It is a quadratic function of distance from a light source to a surface point. The three coefficients are specified in the attenuation field. Attenuation works only for light sources with a fixed location, such as point and spot lights. Fog has one of four types, each of which blends each surface point with the specified fog color. Each type interprets the visibility field to be the distance at which fog totally obscures objects. A visibility value of 0 (the default) causes the SoEnvironment node to set up fog so that the visibility is the distance to the far clipping plane of the current camera. Note that this node has effect only during rendering, and that it does not inherit field values from other SoEnvironment nodes.

FIELDS

c } c } ambientIntensity

c } c } ambientColor

Intensity and RGB color of ambient lighting (for Phong lighting). c } c } attenuation

Squared, linear, and constant light attenuation coefficients (in that order) with respect to distance of light from surface (for Phong lighting). c } c } fogType

c } c } fogColor

c } c } fogVisibility

Type of fog, color of fog, and visibility distance, which is the distance at which fog totally obscures objects.

METHODS

c } c } SoEnvironment()

Creates an environment node with default settings. c } c } getClassTypeId()

Returns type identifier for this class.

ACTION BEHAVIOR

SoGLRenderAction

Sets the current environment parameters to those specified with this node. Successive geometries will be rendered using this environment.

FILE FORMAT/DEFAULTS

Environment {
ambientIntensity	0.2
ambientColor	1 1 1
attenuation	0 0 1
fogType	NONE
fogColor	1 1 1
fogVisibility	0
}

SEE ALSO

SoLight, SoLightModel