FreeWRL / FreeX3D 4.3.0
X3DSoundSourceNode.java
1package org.web3d.x3d.sai;
2
3public interface X3DSoundSourceNode {
4 public float getPitch();
5 public void setPitch(float pitch) throws InvalidFieldValueException;
6 public void setDescription(String text);
7 public String getDescription(String text);
8}