Interface ListenerPoint

All Superinterfaces:
X3DBindableNode, X3DChildNode, X3DNode, X3DSoundSourceNode, X3DTimeDependentNode
All Known Implementing Classes:
ListenerPoint

public interface ListenerPoint
extends X3DSoundSourceNode, X3DBindableNode
Abstract node interface, defined by X3D Java Scene Access Interface (SAI) Specification to support X3D Java interoperability.


Package hint: This interface is defined by the X3D Java Language Binding Specification for the Scene Authoring Interface (SAI).
See Also:
SAI Java Specification, X3D Abstract Specification: ListenerPoint, X3D Tooltips: ListenerPoint, X3D Scene Authoring Hints
  • Method Summary

    Modifier and Type Method Description
    double getBindTime()
    Provide double value in seconds from outputOnly SFTime field named bindTime.
    java.lang.String getDescription()
    Provide String value from inputOutput SFString field named description.
    double getDuration()
    Provide double value in seconds within allowed range of [-1,infinity) from outputOnly SFTime field named duration_changed.
    double getElapsedTime()
    Provide double value in seconds within allowed range of [0,infinity) from outputOnly SFTime field named elapsedTime.
    boolean getEnabled()
    Provide boolean value from inputOutput SFBool field named enabled.
    float getGain()
    Provide float value from inputOutput SFFloat field named gain.
    float getInterauralDistance()
    Provide float value within allowed range of [0,infinity) from inputOutput SFFloat field named interauralDistance.
    boolean getIsActive()
    Provide boolean value from outputOnly SFBool field named isActive.
    boolean getIsBound()
    Provide boolean value from outputOnly SFBool field named isBound.
    boolean getIsPaused()
    Provide boolean value from outputOnly SFBool field named isPaused.
    boolean getLoop()
    Provide boolean value from inputOutput SFBool field named loop.
    X3DMetadataObject getMetadata()
    Provide org.web3d.x3d.sai.Core.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 inputOutput SFRotation field named orientation.
    double getPauseTime()
    Provide double value in seconds from inputOutput SFTime field named pauseTime.
    float getPitch()
    Provide float value within allowed range of (0,infinity) from inputOutput SFFloat field named pitch.
    float[] getPosition()
    Provide array of 3-tuple float results from inputOutput SFVec3f field named position.
    double getResumeTime()
    Provide double value in seconds from inputOutput SFTime field named resumeTime.
    double getStartTime()
    Provide double value in seconds from inputOutput SFTime field named startTime.
    double getStopTime()
    Provide double value in seconds from inputOutput SFTime field named stopTime.
    boolean getTrackCurrentView()
    Provide boolean value from inputOutput SFBool field named trackCurrentView.
    ListenerPoint setDescription​(java.lang.String newValue)
    Accessor method to assign String value to inputOutput SFString field named description.
    ListenerPoint setEnabled​(boolean newValue)
    Accessor method to assign boolean value to inputOutput SFBool field named enabled.
    ListenerPoint setGain​(float newValue)
    Accessor method to assign float value to inputOutput SFFloat field named gain.
    ListenerPoint setInterauralDistance​(float newValue)
    Accessor method to assign float value to inputOutput SFFloat field named interauralDistance.
    ListenerPoint setLoop​(boolean newValue)
    Accessor method to assign boolean value to inputOutput SFBool field named loop.
    ListenerPoint setMetadata​(X3DMetadataObject newValue)
    Accessor method to assign org.web3d.x3d.sai.Core.X3DMetadataObject instance (using a properly typed node) to inputOutput SFNode field metadata.
    ListenerPoint setOrientation​(float[] newValue)
    Accessor method to assign 4-tuple float array unit axis, angle (in radians) to inputOutput SFRotation field named orientation.
    ListenerPoint setPauseTime​(double newValue)
    Accessor method to assign double value in seconds to inputOutput SFTime field named pauseTime.
    ListenerPoint setPitch​(float newValue)
    Accessor method to assign float value to inputOutput SFFloat field named pitch.
    ListenerPoint setPosition​(float[] newValue)
    Accessor method to assign 3-tuple float array to inputOutput SFVec3f field named position.
    ListenerPoint setResumeTime​(double newValue)
    Accessor method to assign double value in seconds to inputOutput SFTime field named resumeTime.
    ListenerPoint setStartTime​(double newValue)
    Accessor method to assign double value in seconds to inputOutput SFTime field named startTime.
    ListenerPoint setStopTime​(double newValue)
    Accessor method to assign double value in seconds to inputOutput SFTime field named stopTime.
    ListenerPoint setTrackCurrentView​(boolean newValue)
    Accessor method to assign boolean value to inputOutput SFBool field named trackCurrentView.