OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010, Google Inc. All rights reserved. | 2 * Copyright (C) 2010, Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 20 matching lines...) Expand all Loading... |
31 | 31 |
32 enum DistanceModelType { | 32 enum DistanceModelType { |
33 "linear", | 33 "linear", |
34 "inverse", | 34 "inverse", |
35 "exponential" | 35 "exponential" |
36 }; | 36 }; |
37 | 37 |
38 [ | 38 [ |
39 Constructor(BaseAudioContext context, optional PannerOptions options), | 39 Constructor(BaseAudioContext context, optional PannerOptions options), |
40 RaisesException=Constructor, | 40 RaisesException=Constructor, |
| 41 Measure |
41 ] interface PannerNode : AudioNode { | 42 ] interface PannerNode : AudioNode { |
42 // Default model for stereo is equalpower. | 43 // Default model for stereo is equalpower. |
43 attribute PanningModelType panningModel; | 44 attribute PanningModelType panningModel; |
44 | 45 |
45 // Uses a 3D cartesian coordinate system | 46 // Uses a 3D cartesian coordinate system |
46 [MeasureAs=PannerNodeSetPosition] void setPosition(float x, float y, float z
); | 47 [MeasureAs=PannerNodeSetPosition] void setPosition(float x, float y, float z
); |
47 [MeasureAs=PannerNodeSetOrientation] void setOrientation(float x, float y, f
loat z); | 48 [MeasureAs=PannerNodeSetOrientation] void setOrientation(float x, float y, f
loat z); |
48 | 49 |
49 // Uses a 3D cartesian coordinate system | 50 // Uses a 3D cartesian coordinate system |
50 readonly attribute AudioParam positionX; | 51 readonly attribute AudioParam positionX; |
51 readonly attribute AudioParam positionY; | 52 readonly attribute AudioParam positionY; |
52 readonly attribute AudioParam positionZ; | 53 readonly attribute AudioParam positionZ; |
53 | 54 |
54 readonly attribute AudioParam orientationX; | 55 readonly attribute AudioParam orientationX; |
55 readonly attribute AudioParam orientationY; | 56 readonly attribute AudioParam orientationY; |
56 readonly attribute AudioParam orientationZ; | 57 readonly attribute AudioParam orientationZ; |
57 | 58 |
58 // Distance model | 59 // Distance model |
59 attribute DistanceModelType distanceModel; | 60 attribute DistanceModelType distanceModel; |
60 | 61 |
61 [RaisesException=Setter] attribute double refDistance; | 62 [RaisesException=Setter] attribute double refDistance; |
62 [RaisesException=Setter] attribute double maxDistance; | 63 [RaisesException=Setter] attribute double maxDistance; |
63 attribute double rolloffFactor; | 64 attribute double rolloffFactor; |
64 | 65 |
65 // Directional sound cone | 66 // Directional sound cone |
66 attribute double coneInnerAngle; | 67 attribute double coneInnerAngle; |
67 attribute double coneOuterAngle; | 68 attribute double coneOuterAngle; |
68 attribute double coneOuterGain; | 69 attribute double coneOuterGain; |
69 }; | 70 }; |
OLD | NEW |