Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(486)

Side by Side Diff: lib/html/doc/interface/AudioPannerNode.dartdoc

Issue 10544064: Add dummy dart:html library for documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « lib/html/doc/interface/AudioNode.dartdoc ('k') | lib/html/doc/interface/AudioParam.dartdoc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING:
6 // This file contains documentation that is merged into the real source.
7 // Do not make code changes here.
8
9 /// @domName AudioPannerNode
10 interface AudioPannerNode extends AudioNode {
11
12 static final int EQUALPOWER = 0;
13
14 static final int EXPONENTIAL_DISTANCE = 2;
15
16 static final int HRTF = 1;
17
18 static final int INVERSE_DISTANCE = 1;
19
20 static final int LINEAR_DISTANCE = 0;
21
22 static final int SOUNDFIELD = 2;
23
24 /** @domName AudioPannerNode.coneGain */
25 final AudioGain coneGain;
26
27 /** @domName AudioPannerNode.coneInnerAngle */
28 num coneInnerAngle;
29
30 /** @domName AudioPannerNode.coneOuterAngle */
31 num coneOuterAngle;
32
33 /** @domName AudioPannerNode.coneOuterGain */
34 num coneOuterGain;
35
36 /** @domName AudioPannerNode.distanceGain */
37 final AudioGain distanceGain;
38
39 /** @domName AudioPannerNode.distanceModel */
40 int distanceModel;
41
42 /** @domName AudioPannerNode.maxDistance */
43 num maxDistance;
44
45 /** @domName AudioPannerNode.panningModel */
46 int panningModel;
47
48 /** @domName AudioPannerNode.refDistance */
49 num refDistance;
50
51 /** @domName AudioPannerNode.rolloffFactor */
52 num rolloffFactor;
53
54 /** @domName AudioPannerNode.setOrientation */
55 void setOrientation(num x, num y, num z);
56
57 /** @domName AudioPannerNode.setPosition */
58 void setPosition(num x, num y, num z);
59
60 /** @domName AudioPannerNode.setVelocity */
61 void setVelocity(num x, num y, num z);
62 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/AudioNode.dartdoc ('k') | lib/html/doc/interface/AudioParam.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698