public class SoVRMLTextureBackground extends SoVRMLNode
See the X3D Specification, below.
<font color="#0000FF">NOTE:</font> This class does not exist in Open Inventor 10.0 and later.
This section describes the expected behavior of the node in a conforming X3D browser application. In some cases, the application is responsible for implementing portions of the expected behavior. Open Inventor viewer classes and IVF classes implement some of the application behaviors.
This section may reference portions of the X3D specification that are not present in this help file. The complete X3D spec is available at
The SoVRMLTextureBackground
node is used to specify a color backdrop that simulates ground and sky, as well as a background texture, or
panorama, that is placed behind all geometry in the scene and in front of the ground and sky. SoVRMLTextureBackground
nodes are specified in the local coordinate system and are affected by the accumulated rotation of their parents (see below).
SoVRMLTextureBackground
nodes are bindable nodes (see "Concepts - Bindable Children
Nodes"). There exists an SoVRMLTextureBackground
stack, in which the top-most SoVRMLTextureBackground
on the stack is the currently active SoVRMLTextureBackground
and thus applied to the view. To move an SoVRMLTextureBackground
to the top of the stack, a true value is sent to the set_bind eventIn. Once active, the SoVRMLTextureBackground
is then bound to the browsers view. A false value of set_bind , removes the SoVRMLTextureBackground
from the stack and unbinds it from the browser viewer. See "Concepts - Bindable Children Nodes" for more details on the the bind stack.
The ground and sky backdrop is conceptually a partial sphere (i.e., ground) enclosed inside of a full sphere (i.e., sky) in the local coordinate system, with the viewer placed at the center of the spheres. Both spheres have infinite radius (epsilon apart), and each is painted with concentric circles of interpolated color perpendicular to the local Y axis of the sphere. The SoVRMLTextureBackground
node is subject to the accumulated rotations of its parent transformations - scaling and translation transformations are ignored. The sky sphere is always slightly farther away from the viewer than the ground sphere - the ground appears in front of the sky in cases where they overlap.
The skyColor
field specifies the color of the sky at the various angles on the sky sphere. The first value of the skyColor
field specifies the color of the sky at 0.0 degrees, the north pole (i.e., straight up from the viewer). The skyAngle
field specifies the angles from the north pole in which concentric circles of color appear - the north pole of the sphere is implicitly defined to be 0.0 degrees, the natural horizon at pi/2 radians, and the south pole is pi radians. skyAngle
is restricted to increasing values in the range 0.0 to pi. There must be one more skyColor
value than there are skyAngle
values - the first color value is the color at the north pole, which is not specified in the skyAngle
field. If the last skyAngle
is less than pi, then the color band between the last skyAngle
and the south pole is clamped to the last skyColor
. The sky color is linearly interpolated between the specified skyColor
values.
The groundColor
field specifies the color of the ground at the various angles on the ground sphere. The first value of the groundColor
field specifies the color of the ground at 0.0 degrees, the south pole (i.e., straight down). The groundAngle
field specifies the angles from the south pole that the concentric circles of color appear - the south pole of the sphere is implicitly defined at 0.0 degrees. groundAngle
is restricted to increasing values in the range 0.0 to pi. There must be one more groundColor
values than there are groundAngle
values - the first color value is for the south pole which is not specified in the groundAngle
field. If the last groundAngle
is less than pi
(it usually is), then the region between the last groundAngle
and the north pole is invisible. The ground color is linearly interpolated between the specified groundColor
values.
The backTexture
, bottomTexture
, frontTexture
, leftTexture
, rightTexture
, and topTexture
fields specify a set of images that define a background panorama, between the ground/sky backdrop and the world's geometry. The panorama consists of six images, each of which is mapped onto the faces of an infinitely large cube centered in the local coordinate system. The images are applied individually to each face of the cube; the entire image goes on each face. On the front, back, right, and left faces of the cube, when viewed from the inside with the Y-axis up, the texture is mapped onto each face with the same orientation as the if image was displayed normally in 2D. On the top face of the cube, when viewed from the inside looking up along the +Y axis with the +Z axis as the view up direction, the texture is mapped onto the face with the same orientation as the if image was displayed normally in 2D. On the bottom face of the box, when viewed from the inside down the -Y axis with the -Z axis as the view up direction, the texture is mapped onto the face with the same orientation as if the image was displayed normally in 2D.
Alpha values in the panorama images (i.e., two- or four-component images) specify that the panorama is semi-transparent or transparent in regions, allowing the groundColor
and skyColor
to be visible. One-component images are displayed in grayscale; two-component images are displayed in grayscale with alpha transparency; three-component images are displayed in full RGB color; four-component images are displayed in full RGB color with alpha transparency. Often, the bottomTexture
and topTexture
images will not be specified, to allow sky and ground to show. The other four images may depict surrounding mountains or other distant scenery. Browsers are required to support the JPEG and PNG image file formats, and in addition, may support any other image formats. Support for the GIF format (including transparent backgrounds) is recommended. See the section "Concepts - URLS and URNs" for details on the url fields.
Panorama images may be one-component (grayscale), two-component (grayscale plus alpha), three-component (full RGB color), or four-component (full RGB color plus alpha).
Ground colors, sky colors, and panoramic images do not translate with respect to the viewer, though they do rotate with respect to the viewer. That is, the viewer can never get any closer to the background, but can turn to examine all sides of the panorama cube, and can look up and down to see the concentric rings of ground and sky (if visible).
SoVRMLTextureBackground
is not affected by SoVRMLFog
. Therefore, if an SoVRMLTextureBackground
is active (i.e., bound) while an SoVRMLFog
is active, then the SoVRMLTextureBackground
will be displayed with no fogging effects. It is the author's responsibility to set the SoVRMLTextureBackground
values to match the SoVRMLFog
(e.g., ground colors fade to fog color with distance and panorama images tinted with fog color).
The first SoVRMLTextureBackground
node found during reading of the world is automatically bound (receives set_bind true) and is used as the initial background when the world is loaded.
File format/default:
VRMLBackground {
groundAngle | [] |
groundColor | [] |
backTexture | [] |
bottomTexture | [] |
frontTexture | [] |
leftTexture | [] |
rightTexture | [] |
topTexture | [] |
skyAngle | [] |
skyColor | [ 0 0 0 ] |
metadata | NULL |
SoSFBool | set_bind |
SoMFFloat | set_groundAngle |
SoMFColor | set_groundColor |
SoSFNode | set_backTexture |
SoSFNode | set_bottomTexture |
SoSFNode | set_frontTexture |
SoSFNode | set_leftTexture |
SoSFNode | set_rightTexture |
SoSFNode | set_topTexture |
SoMFFloat | set_skyAngle |
SoMFColor | set_skyColor |
SoSFNode | set_metadata |
SoSFBool | isBound |
SoSFTime | bindTime |
SoMFFloat | groundAngle_changed |
SoMFColor | groundColor_changed |
SoSFNode | backTexture_changed |
SoSFNode | bottomTexture_changed |
SoSFNode | frontTexture_changed |
SoSFNode | leftTexture_changed |
SoSFNode | rightTexture_changed |
SoSFNode | topTexture_changed |
SoMFFloat | skyAngle_changed |
SoMFColor | skyColor_changed |
SoSFNode | metadata_changed |
Inventor.ConstructorCommand
Modifier and Type | Field and Description |
---|---|
SoSFNode |
backTexture
Deprecated.
Specifies one of a set of images that define a background panorama between the ground/sky backdrop and the world's geometry.
|
SoSFNode |
bottomTexture
Deprecated.
See
backTexture . |
SoSFNode |
frontTexture
Deprecated.
See
backTexture . |
SoMFFloat |
groundAngle
Deprecated.
Specifies the angles from the south pole in which the concentric circles of color appear.
|
SoMFColor |
groundColor
Deprecated.
Specifies the color of the ground at the various angle on the ground sphere.
|
SoSFNode |
leftTexture
Deprecated.
See
backTexture . |
SoSFNode |
rightTexture
Deprecated.
See
backTexture . |
SoMFFloat |
skyAngle
Deprecated.
Specifies the angles from the north pole in which concentric circles of color appear.
|
SoMFColor |
skyColor
Deprecated.
Specifies the color of the sky at the various angles on the sky sphere.
|
SoSFNode |
topTexture
Deprecated.
See
backTexture . |
SoMFFloat |
transparency
Deprecated.
Transparency value.
|
metadata
VERBOSE_LEVEL, ZeroHandle
Constructor and Description |
---|
SoVRMLTextureBackground()
Deprecated.
Constructor.
|
affectsState, callback, copy, copy, distribute, doAction, getAlternateRep, getBoundingBox, getByName, getMatrix, getPrimitiveCount, getRenderUnitID, GLRender, GLRenderBelowPath, GLRenderInPath, GLRenderOffPath, grabEventsCleanup, grabEventsSetup, handleEvent, isBoundingBoxIgnoring, isOverride, pick, rayPick, search, setOverride, touch, write
copyFieldValues, copyFieldValues, enableNotify, fieldsAreEqual, get, getAllFields, getEventIn, getEventOut, getField, getFieldName, hasDefaultValues, isNotifyEnabled, set, setToDefaults
dispose, getEXTERNPROTO, getName, getPROTO, isDisposable, isSynchronizable, setName, setSynchronizable
getAddress, getNativeResourceHandle, startInternalThreads, stopInternalThreads
public final SoMFColor groundColor
groundColor
specifies the color of the ground at 0.0 degrees. There must be one more goundColor value than there are groundAngle
values. The first color is for 0.0 which is not specified in the groundAngle
field.public final SoMFFloat groundAngle
groundAngle
ranges from 0.0 to pi.public final SoMFColor skyColor
skyColor
value than there are skyAngle
values. The first color value is the color at the north pole, which is not specified in the skyAngle
field.public final SoMFFloat skyAngle
public final SoSFNode backTexture
public final SoSFNode bottomTexture
backTexture
.public final SoSFNode frontTexture
backTexture
.public final SoSFNode leftTexture
backTexture
.public final SoSFNode rightTexture
backTexture
.public final SoSFNode topTexture
backTexture
.public final SoMFFloat transparency
Generated on January 23, 2025, Copyright © Thermo Fisher Scientific. All rights reserved. http://www.openinventor.com