Package org.web3d.x3d.sai.Geospatial
Interface GeoProximitySensor
- All Superinterfaces:
X3DChildNode,X3DEnvironmentalSensorNode,X3DNode,X3DSensorNode
- All Known Implementing Classes:
GeoProximitySensorObject
public interface GeoProximitySensor extends X3DEnvironmentalSensorNode
GeoProximitySensor generates events when the viewer enters, exits and moves within a region of space (defined by a box).
X3D node tooltip: (X3D version 3.2 or later) [X3DEnvironmentalSensorNode] GeoProximitySensor generates events when the viewer enters, exits and moves within a region of space (defined by a box).
Package hint: This interface is defined by the X3D Java Language Binding Specification for the Scene Authoring Interface (SAI).
X3D node tooltip: (X3D version 3.2 or later) [X3DEnvironmentalSensorNode] GeoProximitySensor generates events when the viewer enters, exits and moves within a region of space (defined by a box).
- Hint: multiple USEd instances are cumulative, but avoid overlaps.
- Hint: can first use GeoTransform to relocate/reorient box.
- Hint: surround entire world to start behaviors once scene is loaded.
- Hint: X3D for Advanced Modeling (X3D4AM) slideset http://x3dgraphics.com/slidesets/X3dForAdvancedModeling/GeospatialComponentX3dEarth.pdf
- Warning: requires X3D profile='Full' or else include <component name='Geospatial' level='2'/>
Package hint: This interface is defined by the X3D Java Language Binding Specification for the Scene Authoring Interface (SAI).
-
Method Summary
Modifier and Type Method Description double[]getCenter()Provide array of 3-tuple double results from inputOutput SFVec3d field named center.float[]getCenterOfRotation()Provide array of 3-tuple float results unit axis, angle (in radians) from outputOnly SFVec3f field named centerOfRotation_changed.booleangetEnabled()Provide boolean value from inputOutput SFBool field named enabled.doublegetEnterTime()Provide double value in seconds from outputOnly SFTime field named enterTime.doublegetExitTime()Provide double value in seconds from outputOnly SFTime field named exitTime.double[]getGeoCenter()Provide array of 3-tuple double results from inputOutput SFVec3d field named geoCenter.double[]getGeoCoord()Provide array of 3-tuple double results from outputOnly SFVec3d field named geoCoord_changed.GeoOrigingetGeoOrigin()Provide GeoOrigin instance (using a properly typed node) (deprecated node, optional) from initializeOnly SFNode field geoOrigin.java.lang.String[]getGeoSystem()Provide array of String results from initializeOnly MFString field named geoSystem.booleangetIsActive()Provide boolean value from outputOnly SFBool field named isActive.X3DMetadataObjectgetMetadata()Provide X3DMetadataObject instance (using a properly typed node) from inputOutput SFNode field metadata.float[]getOrientation()Provide array of 4-tuple float results unit axis, angle (in radians) from outputOnly SFRotation field named orientation_changed.float[]getPosition()Provide array of 3-tuple float results from outputOnly SFVec3f field named position_changed.float[]getSize()Provide array of 3-tuple float results within allowed range of [0,infinity) from initializeOnly SFVec3f field named size.GeoProximitySensorsetCenter(double[] newValue)Accessor method to assign 3-tuple double array to inputOutput SFVec3d field named center.GeoProximitySensorsetEnabled(boolean newValue)Accessor method to assign boolean value to inputOutput SFBool field named enabled.GeoProximitySensorsetGeoCenter(double[] newValue)Accessor method to assign 3-tuple double array to inputOutput SFVec3d field named geoCenter.GeoProximitySensorsetGeoOrigin(GeoOrigin newValue)Accessor method to assign GeoOrigin instance (using a properly typed node) to initializeOnly SFNode field geoOrigin.GeoProximitySensorsetGeoSystem(java.lang.String[] newValue)Accessor method to assign String array to initializeOnly MFString field named geoSystem.GeoProximitySensorsetMetadata(X3DMetadataObject newValue)Accessor method to assign X3DMetadataObject instance (using a properly typed node) to inputOutput SFNode field metadata.GeoProximitySensorsetSize(float[] newValue)Accessor method to assign 3-tuple float array to initializeOnly SFVec3f field named size.
-
Method Details
-
getCenter
double[] getCenter()Provide array of 3-tuple double results from inputOutput SFVec3d field named center.
Tooltip: (starting with v3.3) Position offset from origin of local coordinate system. *- Returns:
- value of center field
-
setCenter
Accessor method to assign 3-tuple double array to inputOutput SFVec3d field named center.
Tooltip: (starting with v3.3) Position offset from origin of local coordinate system. *- Parameters:
newValue- is new value for the center field.- Returns:
GeoProximitySensor- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
getCenterOfRotation
float[] getCenterOfRotation()Provide array of 3-tuple float results unit axis, angle (in radians) from outputOnly SFVec3f field named centerOfRotation_changed.
Tooltip: Sends changed centerOfRotation values, likely caused by user interaction.- Warning: it is an error to define this transient outputOnly field in an X3D file, instead only use it a source for ROUTE events.
- Returns:
- value of centerOfRotation_changed field
-
getEnabled
boolean getEnabled()Provide boolean value from inputOutput SFBool field named enabled.
Tooltip: Enables/disables node operation. *- Specified by:
getEnabledin interfaceX3DEnvironmentalSensorNode- Specified by:
getEnabledin interfaceX3DSensorNode- Returns:
- value of enabled field
-
setEnabled
Accessor method to assign boolean value to inputOutput SFBool field named enabled.
Tooltip: Enables/disables node operation. *- Specified by:
setEnabledin interfaceX3DEnvironmentalSensorNode- Specified by:
setEnabledin interfaceX3DSensorNode- Parameters:
newValue- is new value for the enabled field.- Returns:
GeoProximitySensor- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
getEnterTime
double getEnterTime()Provide double value in seconds from outputOnly SFTime field named enterTime.
Tooltip: Time event generated when user's camera enters the box.- Warning: it is an error to define this transient outputOnly field in an X3D file, instead only use it a source for ROUTE events.
- Returns:
- value of enterTime field
-
getExitTime
double getExitTime()Provide double value in seconds from outputOnly SFTime field named exitTime.
Tooltip: Time event generated when user's camera exits the box.- Warning: it is an error to define this transient outputOnly field in an X3D file, instead only use it a source for ROUTE events.
- Returns:
- value of exitTime field
-
getGeoCenter
double[] getGeoCenter()Provide array of 3-tuple double results from inputOutput SFVec3d field named geoCenter.
Tooltip: (deprecated as of v3.3) Position offset from origin of local coordinate system.- Hint: X3D for Advanced Modeling (X3D4AM) slideset http://x3dgraphics.com/slidesets/X3dForAdvancedModeling/GeospatialComponentX3dEarth.pdf
- Warning: requires X3D profile='Full' or else include <component name='Geospatial' level='1'/>
- Returns:
- value of geoCenter field
-
setGeoCenter
Accessor method to assign 3-tuple double array to inputOutput SFVec3d field named geoCenter.
Tooltip: (deprecated as of v3.3) Position offset from origin of local coordinate system.- Hint: X3D for Advanced Modeling (X3D4AM) slideset http://x3dgraphics.com/slidesets/X3dForAdvancedModeling/GeospatialComponentX3dEarth.pdf
- Warning: requires X3D profile='Full' or else include <component name='Geospatial' level='1'/>
- Parameters:
newValue- is new value for the geoCenter field.- Returns:
GeoProximitySensor- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
getGeoCoord
double[] getGeoCoord()Provide array of 3-tuple double results from outputOnly SFVec3d field named geoCoord_changed.
Tooltip: Sends geospatial coordinates of viewer's position corresponding to world position returned by position_changed.- Hint: X3D for Advanced Modeling (X3D4AM) slideset http://x3dgraphics.com/slidesets/X3dForAdvancedModeling/GeospatialComponentX3dEarth.pdf
- Warning: requires X3D profile='Full' or else include <component name='Geospatial' level='1'/>
- Warning: it is an error to define this transient outputOnly field in an X3D file, instead only use it a source for ROUTE events.
- Returns:
- value of geoCoord_changed field
-
getGeoOrigin
GeoOrigin getGeoOrigin()Provide GeoOrigin instance (using a properly typed node) (deprecated node, optional) from initializeOnly SFNode field geoOrigin.- Returns:
- value of geoOrigin field
-
setGeoOrigin
Accessor method to assign GeoOrigin instance (using a properly typed node) to initializeOnly SFNode field geoOrigin.- Parameters:
newValue- is new value for the geoOrigin field.- Returns:
GeoProximitySensor- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
getGeoSystem
java.lang.String[] getGeoSystem()Provide array of String results from initializeOnly MFString field named geoSystem.
Tooltip: Identifies spatial reference frame: Geodetic (GD), Geocentric (GC), Universal Transverse Mercator (UTM). Supported values: "GD" "UTM" or "GC" followed by additional quoted string parameters as appropriate for the type.- Hint: X3D Architecture 25.2.2 Spatial reference frames https://www.web3d.org/documents/specifications/19775-1/V3.3/Part01/components/geodata.html#Spatialreferenceframes
- Hint: X3D Architecture 25.2.4 Specifying geospatial coordinates https://www.web3d.org/documents/specifications/19775-1/V3.3/Part01/components/geodata.html#Specifyinggeospatialcoords
- Hint: UTM is Universal Transverse Mercator coordinate system https://en.wikipedia.org/wiki/Universal_Transverse_Mercator_coordinate_system
- Warning: deprecated values are GDC (replaced by GD) and GCC (replaced by GC).
- Returns:
- value of geoSystem field
-
setGeoSystem
Accessor method to assign String array to initializeOnly MFString field named geoSystem.
Tooltip: Identifies spatial reference frame: Geodetic (GD), Geocentric (GC), Universal Transverse Mercator (UTM). Supported values: "GD" "UTM" or "GC" followed by additional quoted string parameters as appropriate for the type.- Hint: X3D Architecture 25.2.2 Spatial reference frames https://www.web3d.org/documents/specifications/19775-1/V3.3/Part01/components/geodata.html#Spatialreferenceframes
- Hint: X3D Architecture 25.2.4 Specifying geospatial coordinates https://www.web3d.org/documents/specifications/19775-1/V3.3/Part01/components/geodata.html#Specifyinggeospatialcoords
- Hint: UTM is Universal Transverse Mercator coordinate system https://en.wikipedia.org/wiki/Universal_Transverse_Mercator_coordinate_system
- Warning: deprecated values are GDC (replaced by GD) and GCC (replaced by GC).
- Parameters:
newValue- is new value for the geoSystem field.- Returns:
GeoProximitySensor- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-
getIsActive
boolean getIsActive()Provide boolean value from outputOnly SFBool field named isActive.
Tooltip: isActive true/false events are sent as viewer enters/exits Proximity box. isActive=true when viewer enters Proximity box, isActive=false when viewer exits Proximity box.- Warning: it is an error to define this transient outputOnly field in an X3D file, instead only use it a source for ROUTE events.
- Specified by:
getIsActivein interfaceX3DEnvironmentalSensorNode- Specified by:
getIsActivein interfaceX3DSensorNode- Returns:
- value of isActive field
-
getMetadata
X3DMetadataObject getMetadata()Provide 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/documents/specifications/19775-1/V3.3/Part01/components/core.html#Metadata
- Specified by:
getMetadatain interfaceX3DChildNode- Specified by:
getMetadatain interfaceX3DEnvironmentalSensorNode- Specified by:
getMetadatain interfaceX3DNode- Specified by:
getMetadatain interfaceX3DSensorNode- Returns:
- value of metadata field
- See Also:
- X3D Scene Authoring Hints: Metadata Nodes
-
setMetadata
Accessor method to assign 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/documents/specifications/19775-1/V3.3/Part01/components/core.html#Metadata
- Specified by:
setMetadatain interfaceX3DChildNode- Specified by:
setMetadatain interfaceX3DEnvironmentalSensorNode- Specified by:
setMetadatain interfaceX3DNode- Specified by:
setMetadatain interfaceX3DSensorNode- Parameters:
newValue- is new value for the metadata field.- Returns:
GeoProximitySensor- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).- See Also:
- X3D Scene Authoring Hints: Metadata Nodes
-
getOrientation
float[] getOrientation()Provide array of 4-tuple float results unit axis, angle (in radians) from outputOnly SFRotation field named orientation_changed.
Tooltip: Sends rotation event relative to center.- Warning: it is an error to define this transient outputOnly field in an X3D file, instead only use it a source for ROUTE events.
- Returns:
- value of orientation_changed field
-
getPosition
float[] getPosition()Provide array of 3-tuple float results from outputOnly SFVec3f field named position_changed.
Tooltip: Sends translation event relative to center.- Warning: it is an error to define this transient outputOnly field in an X3D file, instead only use it a source for ROUTE events.
- Returns:
- value of position_changed field
-
getSize
float[] getSize()Provide array of 3-tuple float results within allowed range of [0,infinity) from initializeOnly SFVec3f field named size.
Tooltip: [0,+infinity) size of Proximity box.- Hint: size 0 0 0 is same as enabled false.
- Specified by:
getSizein interfaceX3DEnvironmentalSensorNode- Returns:
- value of size field
-
setSize
Accessor method to assign 3-tuple float array to initializeOnly SFVec3f field named size.
Tooltip: [0,+infinity) size of Proximity box.- Hint: size 0 0 0 is same as enabled false.
- Specified by:
setSizein interfaceX3DEnvironmentalSensorNode- Parameters:
newValue- is new value for the size field.- Returns:
GeoProximitySensor- namely this same object to allow sequential method pipelining (i.e. consecutive method invocations on the same object).
-