| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // Dart core library. | 5 // Dart core library. |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * *Note:* This class is **deprecated**, and will be removed soon. | 8 * *Note:* This class is **deprecated**, and will be removed soon. |
| 9 * Please use the [dart:math] library instead. | 9 * Please use the [dart:math] library instead. |
| 10 */ | 10 */ |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 static double sin(num x) => MathNatives.sin(x); | 155 static double sin(num x) => MathNatives.sin(x); |
| 156 static double cos(num x) => MathNatives.cos(x); | 156 static double cos(num x) => MathNatives.cos(x); |
| 157 static double tan(num x) => MathNatives.tan(x); | 157 static double tan(num x) => MathNatives.tan(x); |
| 158 static double acos(num x) => MathNatives.acos(x); | 158 static double acos(num x) => MathNatives.acos(x); |
| 159 static double asin(num x) => MathNatives.asin(x); | 159 static double asin(num x) => MathNatives.asin(x); |
| 160 static double atan(num x) => MathNatives.atan(x); | 160 static double atan(num x) => MathNatives.atan(x); |
| 161 static double sqrt(num x) => MathNatives.sqrt(x); | 161 static double sqrt(num x) => MathNatives.sqrt(x); |
| 162 static double exp(num x) => MathNatives.exp(x); | 162 static double exp(num x) => MathNatives.exp(x); |
| 163 static double log(num x) => MathNatives.log(x); | 163 static double log(num x) => MathNatives.log(x); |
| 164 } | 164 } |
| OLD | NEW |