Interface TextureProjector
- All Superinterfaces:
X3DChildNode
,X3DLightNode
,X3DNode
,X3DTextureProjectorNode
- All Known Implementing Classes:
TextureProjector
TextureProjector is similar to a light that projects a texture into the scene, illuminating geometry that intersects the perspective projection volume.
Warning: this is an abstract interface that cannot be instantiated as a concrete object. Java programmers typically only need to use concrete objects provided by the
Package hint: This interface is defined by the X3D Java Language Binding Specification for the Scene Authoring Interface (SAI).
Warning: this is an abstract interface that cannot be instantiated as a concrete object. Java programmers typically only need to use concrete objects provided by the
org.web3d.x3d.jsail
classes.
TextureProjector node tooltip: [X3DTextureProjectorNode] TextureProjector is similar to a light that projects a texture into the scene, illuminating geometry that intersects the perspective projection volume.
- Hint: https://www.web3d.org/specifications/X3Dv4/ISO-IEC19775-1v4-IS//Images/ptmperspective.png
- Warning: add textureTransform field?
Package hint: This interface is defined by the X3D Java Language Binding Specification for the Scene Authoring Interface (SAI).
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionfloat
Provide float value within allowed range of [0,1] from inputOutput SFFloat field named ambientIntensity.float
Provide float value within allowed range of (0,infinity) from outputOnly SFFloat field named aspectRatio.float[]
getColor()
Provide array of 3-tuple float results using RGB values [0..1] using RGB values [0..1] from inputOutput SFColor field named color.Provide String value from inputOutput SFString field named description.float[]
Provide array of 3-tuple float results from inputOutput SFVec3f field named direction.float
Provide float value within allowed range of [-1,infinity) from inputOutput SFFloat field named farDistance.float
Provide float value within allowed range of [0,3.1416] from inputOutput SFFloat field named fieldOfView.boolean
Provide boolean value from inputOutput SFBool field named global.float
Provide float value within allowed range of [0,infinity) from inputOutput SFFloat field named intensity.float[]
Provide array of 3-tuple float results from inputOutput SFVec3f field named location.Provide org.web3d.x3d.sai.Core.X3DMetadataObject instance (using a properly typed node) from inputOutput SFNode field metadata.float
Provide float value within allowed range of [-1,infinity) from inputOutput SFFloat field named nearDistance.boolean
getOn()
Provide boolean value from inputOutput SFBool field named on.float
Provide float value within allowed range of [0,1] from inputOutput SFFloat field named shadowIntensity.boolean
Provide boolean value from inputOutput SFBool field named shadows.Provide org.web3d.x3d.sai.Texturing.X3DTexture2DNode instance (using a properly typed node) from inputOutput SFNode field texture.float[]
Provide array of 3-tuple float results from inputOutput SFVec3f field named upVector.setAmbientIntensity
(float newValue) Accessor method to assign float value to inputOutput SFFloat field named ambientIntensity.setColor
(float[] newValue) Accessor method to assign 3-tuple float array using RGB values [0..1] to inputOutput SFColor field named color.setDescription
(String newValue) Accessor method to assign String value to inputOutput SFString field named description.setDirection
(float[] newValue) Accessor method to assign 3-tuple float array to inputOutput SFVec3f field named direction.setFarDistance
(float newValue) Accessor method to assign float value to inputOutput SFFloat field named farDistance.setFieldOfView
(float newValue) Accessor method to assign float value to inputOutput SFFloat field named fieldOfView.setGlobal
(boolean newValue) Accessor method to assign boolean value to inputOutput SFBool field named global.setIntensity
(float newValue) Accessor method to assign float value to inputOutput SFFloat field named intensity.setLocation
(float[] newValue) Accessor method to assign 3-tuple float array to inputOutput SFVec3f field named location.setMetadata
(X3DMetadataObject newValue) Accessor method to assign org.web3d.x3d.sai.Core.X3DMetadataObject instance (using a properly typed node) to inputOutput SFNode field metadata.setNearDistance
(float newValue) Accessor method to assign float value to inputOutput SFFloat field named nearDistance.setOn
(boolean newValue) Accessor method to assign boolean value to inputOutput SFBool field named on.setShadowIntensity
(float newValue) Accessor method to assign float value to inputOutput SFFloat field named shadowIntensity.setShadows
(boolean newValue) Accessor method to assign boolean value to inputOutput SFBool field named shadows.setTexture
(X3DTexture2DNode newValue) Accessor method to assign org.web3d.x3d.sai.Texturing.X3DTexture2DNode instance (using a properly typed node) to inputOutput SFNode field texture.setUpVector
(float[] newValue) Accessor method to assign 3-tuple float array to inputOutput SFVec3f field named upVector.
-
Method Details
-
getAmbientIntensity
float getAmbientIntensity()Provide float value within allowed range of [0,1] from inputOutput SFFloat field named ambientIntensity.
Tooltip: [0,1] Brightness of ambient (nondirectional background) emission from the light. Interchange profile- Hint: this field may be ignored, applying the default value regardless.
- Specified by:
getAmbientIntensity
in interfaceX3DLightNode
- Specified by:
getAmbientIntensity
in interfaceX3DTextureProjectorNode
- Returns:
- value of ambientIntensity field
-
setAmbientIntensity
Accessor method to assign float value to inputOutput SFFloat field named ambientIntensity.
Tooltip: [0,1] Brightness of ambient (nondirectional background) emission from the light. Interchange profile- Hint: this field may be ignored, applying the default value regardless.
- Specified by:
setAmbientIntensity
in interfaceX3DLightNode
- Specified by:
setAmbientIntensity
in interfaceX3DTextureProjectorNode
- Parameters:
newValue
- is new value for the ambientIntensity field.- Returns:
TextureProjector
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
getAspectRatio
float getAspectRatio()Provide float value within allowed range of (0,infinity) from outputOnly SFFloat field named aspectRatio.
Tooltip: aspectRatio is the ratio of width and height that is projected. *- Specified by:
getAspectRatio
in interfaceX3DTextureProjectorNode
- Returns:
- value of aspectRatio field
-
getColor
float[] getColor()Provide array of 3-tuple float results using RGB values [0..1] using RGB values [0..1] from inputOutput SFColor field named color.
Tooltip: [0,1] color of light, applied to colors of objects.- Hint: X3D Scene Authoring Hints, Color https://www.web3d.org/x3d/content/examples/X3dSceneAuthoringHints.html#Color
- Specified by:
getColor
in interfaceX3DLightNode
- Specified by:
getColor
in interfaceX3DTextureProjectorNode
- Returns:
- value of color field
-
setColor
Accessor method to assign 3-tuple float array using RGB values [0..1] to inputOutput SFColor field named color.
Tooltip: [0,1] color of light, applied to colors of objects.- Hint: X3D Scene Authoring Hints, Color https://www.web3d.org/x3d/content/examples/X3dSceneAuthoringHints.html#Color
- Specified by:
setColor
in interfaceX3DLightNode
- Specified by:
setColor
in interfaceX3DTextureProjectorNode
- Parameters:
newValue
- is new value for the color field.- Returns:
TextureProjector
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
getDescription
String getDescription()Provide String value from inputOutput SFString field named description.
Tooltip: Author-provided prose that describes intended purpose of the url asset.- Hint: many XML tools substitute XML character references for special characters automatically if needed within an attribute value (such as & for & ampersand character, or " for " quotation-mark character).
- Specified by:
getDescription
in interfaceX3DTextureProjectorNode
- Returns:
- value of description field
-
setDescription
Accessor method to assign String value to inputOutput SFString field named description.
Tooltip: Author-provided prose that describes intended purpose of the url asset.- Hint: many XML tools substitute XML character references for special characters automatically if needed within an attribute value (such as & for & ampersand character, or " for " quotation-mark character).
- Specified by:
setDescription
in interfaceX3DTextureProjectorNode
- Parameters:
newValue
- is new value for the description field.- Returns:
TextureProjector
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
getDirection
float[] getDirection()Provide array of 3-tuple float results from inputOutput SFVec3f field named direction.
Tooltip: Direction for projection. *- Specified by:
getDirection
in interfaceX3DTextureProjectorNode
- Returns:
- value of direction field
-
setDirection
Accessor method to assign 3-tuple float array to inputOutput SFVec3f field named direction.
Tooltip: Direction for projection. *- Specified by:
setDirection
in interfaceX3DTextureProjectorNode
- Parameters:
newValue
- is new value for the direction field.- Returns:
TextureProjector
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
getFarDistance
float getFarDistance()Provide float value within allowed range of [-1,infinity) from inputOutput SFFloat field named farDistance.
Tooltip: or (0,+infinity) maximum distance necessary for texture display. *- Specified by:
getFarDistance
in interfaceX3DTextureProjectorNode
- Returns:
- value of farDistance field
-
setFarDistance
Accessor method to assign float value to inputOutput SFFloat field named farDistance.
Tooltip: or (0,+infinity) maximum distance necessary for texture display. *- Specified by:
setFarDistance
in interfaceX3DTextureProjectorNode
- Parameters:
newValue
- is new value for the farDistance field.- Returns:
TextureProjector
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
getFieldOfView
float getFieldOfView()Provide float value within allowed range of [0,3.1416] from inputOutput SFFloat field named fieldOfView.
Tooltip: Preferred minimum viewing angle for this projection in radians, providing minimum height or minimum width (whichever is smaller). Small field of view roughly corresponds to a telephoto lens, large field of view roughly corresponds to a wide-angle lens.- Warning: this field differs for TextureProjectorParallel and TextureProjector.
- Returns:
- value of fieldOfView field
-
setFieldOfView
Accessor method to assign float value to inputOutput SFFloat field named fieldOfView.
Tooltip: Preferred minimum viewing angle for this projection in radians, providing minimum height or minimum width (whichever is smaller). Small field of view roughly corresponds to a telephoto lens, large field of view roughly corresponds to a wide-angle lens.- Warning: this field differs for TextureProjectorParallel and TextureProjector.
- Parameters:
newValue
- is new value for the fieldOfView field.- Returns:
TextureProjector
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
getGlobal
boolean getGlobal()Provide boolean value from inputOutput SFBool field named global.
Tooltip: Global texture projection illuminates all objects within their volume of influence. Scoped texture projection (global false) only illuminates objects within the same transformation hierarchy. *- Specified by:
getGlobal
in interfaceX3DTextureProjectorNode
- Returns:
- value of global field
-
setGlobal
Accessor method to assign boolean value to inputOutput SFBool field named global.
Tooltip: Global texture projection illuminates all objects within their volume of influence. Scoped texture projection (global false) only illuminates objects within the same transformation hierarchy. *- Specified by:
setGlobal
in interfaceX3DTextureProjectorNode
- Parameters:
newValue
- is new value for the global field.- Returns:
TextureProjector
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
getIntensity
float getIntensity()Provide float value within allowed range of [0,infinity) from inputOutput SFFloat field named intensity.
Tooltip: [0,1] Brightness of direct emission from the light. *- Specified by:
getIntensity
in interfaceX3DLightNode
- Specified by:
getIntensity
in interfaceX3DTextureProjectorNode
- Returns:
- value of intensity field
-
setIntensity
Accessor method to assign float value to inputOutput SFFloat field named intensity.
Tooltip: [0,1] Brightness of direct emission from the light. *- Specified by:
setIntensity
in interfaceX3DLightNode
- Specified by:
setIntensity
in interfaceX3DTextureProjectorNode
- Parameters:
newValue
- is new value for the intensity field.- Returns:
TextureProjector
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
getLocation
float[] getLocation()Provide array of 3-tuple float results from inputOutput SFVec3f field named location.
Tooltip: Position of center of texture projection relative to local coordinate system. *- Specified by:
getLocation
in interfaceX3DTextureProjectorNode
- Returns:
- value of location field
-
setLocation
Accessor method to assign 3-tuple float array to inputOutput SFVec3f field named location.
Tooltip: Position of center of texture projection relative to local coordinate system. *- Specified by:
setLocation
in interfaceX3DTextureProjectorNode
- Parameters:
newValue
- is new value for the location field.- Returns:
TextureProjector
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
getMetadata
X3DMetadataObject getMetadata()Provide org.web3d.x3d.sai.Core.X3DMetadataObject instance (using a properly typed node) from inputOutput SFNode field metadata.
Tooltip: [X3DMetadataObject] Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.- Hint: X3D Architecture 7.2.4 Metadata https://www.web3d.org/specifications/X3Dv4/ISO-IEC19775-1v4-IS /Part01/components/core.html#Metadata
- Specified by:
getMetadata
in interfaceX3DChildNode
- Specified by:
getMetadata
in interfaceX3DLightNode
- Specified by:
getMetadata
in interfaceX3DNode
- Specified by:
getMetadata
in interfaceX3DTextureProjectorNode
- Returns:
- value of metadata field
- See Also:
-
setMetadata
Accessor method to assign org.web3d.x3d.sai.Core.X3DMetadataObject instance (using a properly typed node) to inputOutput SFNode field metadata.
Tooltip: [X3DMetadataObject] Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.- Hint: X3D Architecture 7.2.4 Metadata https://www.web3d.org/specifications/X3Dv4/ISO-IEC19775-1v4-IS /Part01/components/core.html#Metadata
- Specified by:
setMetadata
in interfaceX3DChildNode
- Specified by:
setMetadata
in interfaceX3DLightNode
- Specified by:
setMetadata
in interfaceX3DNode
- Specified by:
setMetadata
in interfaceX3DTextureProjectorNode
- Parameters:
newValue
- is new value for the metadata field.- Returns:
TextureProjector
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).- See Also:
-
getNearDistance
float getNearDistance()Provide float value within allowed range of [-1,infinity) from inputOutput SFFloat field named nearDistance.
Tooltip: or (0,+infinity) minimum distance necessary for texture display. *- Specified by:
getNearDistance
in interfaceX3DTextureProjectorNode
- Returns:
- value of nearDistance field
-
setNearDistance
Accessor method to assign float value to inputOutput SFFloat field named nearDistance.
Tooltip: or (0,+infinity) minimum distance necessary for texture display. *- Specified by:
setNearDistance
in interfaceX3DTextureProjectorNode
- Parameters:
newValue
- is new value for the nearDistance field.- Returns:
TextureProjector
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
getOn
boolean getOn()Provide boolean value from inputOutput SFBool field named on.
Tooltip: Enables/disables this texture projection source. *- Specified by:
getOn
in interfaceX3DLightNode
- Specified by:
getOn
in interfaceX3DTextureProjectorNode
- Returns:
- value of on field
-
setOn
Accessor method to assign boolean value to inputOutput SFBool field named on.
Tooltip: Enables/disables this texture projection source. *- Specified by:
setOn
in interfaceX3DLightNode
- Specified by:
setOn
in interfaceX3DTextureProjectorNode
- Parameters:
newValue
- is new value for the on field.- Returns:
TextureProjector
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
getShadowIntensity
float getShadowIntensity()Provide float value within allowed range of [0,1] from inputOutput SFFloat field named shadowIntensity.
Tooltip: [0,1] shadowIntensity field defines how much light is obscured by shapes that cast shadows, ranging from 0 (light not obscured, no visible shadows) to 1 (light completely obscured, full-intensity shadows). *- Specified by:
getShadowIntensity
in interfaceX3DLightNode
- Specified by:
getShadowIntensity
in interfaceX3DTextureProjectorNode
- Returns:
- value of shadowIntensity field
-
setShadowIntensity
Accessor method to assign float value to inputOutput SFFloat field named shadowIntensity.
Tooltip: [0,1] shadowIntensity field defines how much light is obscured by shapes that cast shadows, ranging from 0 (light not obscured, no visible shadows) to 1 (light completely obscured, full-intensity shadows). *- Specified by:
setShadowIntensity
in interfaceX3DLightNode
- Specified by:
setShadowIntensity
in interfaceX3DTextureProjectorNode
- Parameters:
newValue
- is new value for the shadowIntensity field.- Returns:
TextureProjector
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
getShadows
boolean getShadows()Provide boolean value from inputOutput SFBool field named shadows.
Tooltip: shadows field indicates whether or not this light casts a shadow behind illuminated X3DShapeNode geometry. *- Specified by:
getShadows
in interfaceX3DLightNode
- Specified by:
getShadows
in interfaceX3DTextureProjectorNode
- Returns:
- value of shadows field
-
setShadows
Accessor method to assign boolean value to inputOutput SFBool field named shadows.
Tooltip: shadows field indicates whether or not this light casts a shadow behind illuminated X3DShapeNode geometry. *- Specified by:
setShadows
in interfaceX3DLightNode
- Specified by:
setShadows
in interfaceX3DTextureProjectorNode
- Parameters:
newValue
- is new value for the shadows field.- Returns:
TextureProjector
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
getTexture
X3DTexture2DNode getTexture()Provide org.web3d.x3d.sai.Texturing.X3DTexture2DNode instance (using a properly typed node) from inputOutput SFNode field texture.
Tooltip: [X3DTextureNode] Single contained texture node (ImageTexture, MovieTexture, PixelTexture, MultiTexture) that maps image(s) to surface geometry.- Hint: if texture node is NULL or unspecified, corresponding Shape geometry for this Appearance is not textured.
- Hint: X3D Scene Authoring Hints, Images https://www.web3d.org/x3d/content/examples/X3dSceneAuthoringHints.html#Images
- Hint: X3D Architecture 18 Texturing component https://www.web3d.org/specifications/X3Dv4/ISO-IEC19775-1v4-IS /Part01/components/texturing.html
- Hint: X3D Architecture 33 Texturing3D component https://www.web3d.org/specifications/X3Dv4/ISO-IEC19775-1v4-IS /Part01/components/texture3D.html
- Specified by:
getTexture
in interfaceX3DTextureProjectorNode
- Returns:
- value of texture field
-
setTexture
Accessor method to assign org.web3d.x3d.sai.Texturing.X3DTexture2DNode instance (using a properly typed node) to inputOutput SFNode field texture.
Tooltip: [X3DTextureNode] Single contained texture node (ImageTexture, MovieTexture, PixelTexture, MultiTexture) that maps image(s) to surface geometry.- Hint: if texture node is NULL or unspecified, corresponding Shape geometry for this Appearance is not textured.
- Hint: X3D Scene Authoring Hints, Images https://www.web3d.org/x3d/content/examples/X3dSceneAuthoringHints.html#Images
- Hint: X3D Architecture 18 Texturing component https://www.web3d.org/specifications/X3Dv4/ISO-IEC19775-1v4-IS /Part01/components/texturing.html
- Hint: X3D Architecture 33 Texturing3D component https://www.web3d.org/specifications/X3Dv4/ISO-IEC19775-1v4-IS /Part01/components/texture3D.html
- Specified by:
setTexture
in interfaceX3DTextureProjectorNode
- Parameters:
newValue
- is new value for the texture field.- Returns:
TextureProjector
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
getUpVector
float[] getUpVector()Provide array of 3-tuple float results from inputOutput SFVec3f field named upVector.
Tooltip: upVector describes the roll of the camera by saying which direction is up for the camera's orientation. *- Returns:
- value of upVector field
-
setUpVector
Accessor method to assign 3-tuple float array to inputOutput SFVec3f field named upVector.
Tooltip: upVector describes the roll of the camera by saying which direction is up for the camera's orientation. *- Parameters:
newValue
- is new value for the upVector field.- Returns:
TextureProjector
- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-