| OLD | NEW |
| (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 SVGAngle | |
| 10 interface SVGAngle { | |
| 11 | |
| 12 static final int SVG_ANGLETYPE_DEG = 2; | |
| 13 | |
| 14 static final int SVG_ANGLETYPE_GRAD = 4; | |
| 15 | |
| 16 static final int SVG_ANGLETYPE_RAD = 3; | |
| 17 | |
| 18 static final int SVG_ANGLETYPE_UNKNOWN = 0; | |
| 19 | |
| 20 static final int SVG_ANGLETYPE_UNSPECIFIED = 1; | |
| 21 | |
| 22 /** @domName SVGAngle.unitType */ | |
| 23 final int unitType; | |
| 24 | |
| 25 /** @domName SVGAngle.value */ | |
| 26 num value; | |
| 27 | |
| 28 /** @domName SVGAngle.valueAsString */ | |
| 29 String valueAsString; | |
| 30 | |
| 31 /** @domName SVGAngle.valueInSpecifiedUnits */ | |
| 32 num valueInSpecifiedUnits; | |
| 33 | |
| 34 /** @domName SVGAngle.convertToSpecifiedUnits */ | |
| 35 void convertToSpecifiedUnits(int unitType); | |
| 36 | |
| 37 /** @domName SVGAngle.newValueSpecifiedUnits */ | |
| 38 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits); | |
| 39 } | |
| OLD | NEW |