Class MicrophoneCoordinates
- java.lang.Object
-
- com.microsoft.cognitiveservices.speech.audio.MicrophoneCoordinates
-
public class MicrophoneCoordinates extends Object
Represents coordinates of a microphone.
-
-
Constructor Summary
Constructors Constructor Description MicrophoneCoordinates(int X, int Y, int Z)Creates a new object of MicrophoneCoordinates.MicrophoneCoordinates(MicrophoneCoordinates other)Creates a new object of MicrophoneCoordinates using object instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetX()Returns the X-coordinate of the microphone.intgetY()Returns the Y-coordinate of the microphone.intgetZ()Returns the Z-coordinate of the microphone.
-
-
-
Constructor Detail
-
MicrophoneCoordinates
public MicrophoneCoordinates(int X, int Y, int Z)Creates a new object of MicrophoneCoordinates.- Parameters:
X- Specifies the X-coordinate of the microphone, in millimeters.Y- Specifies the Y-coordinate of the microphone, in millimeters.Z- Specifies the Z-coordinate of the microphone, in millimeters.
-
MicrophoneCoordinates
public MicrophoneCoordinates(MicrophoneCoordinates other)
Creates a new object of MicrophoneCoordinates using object instance.- Parameters:
other- A MicrophoneCoordinates object.
-
-