File tree Expand file tree Collapse file tree 7 files changed +12
-6
lines changed
vector_math_64/third_party Expand file tree Collapse file tree 7 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 3
3
- ` operator == ` overrides no longer take nullable arguments. This is only
4
4
visible for classes that implement the interfaces defined in this package
5
5
which no longer need to also widen the argument type.
6
+ - Deprecate ` SimplexNoise ` ; see https: github .com/google/vector_math.dart/issues/270
7
+ for more information.
6
8
7
9
## 2.1.2
8
10
Original file line number Diff line number Diff line change @@ -163,4 +163,3 @@ To automatically generate the latest version of ```vector_math_64```:
163
163
```
164
164
~/src/vector_math/> dart tool/generate_vector_math_64.dart
165
165
```
166
-
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ part of vector_math;
26
26
* found at: http://webstaff.itn.liu.se/~stegu/simplexnoise/SimplexNoise.java
27
27
*/
28
28
29
+ @Deprecated ('This API will be removed '
30
+ '(see https:github.com/google/vector_math.dart/issues/270)' )
29
31
class SimplexNoise {
30
32
static final List <List <double >> _grad3 = < List <double >> [
31
33
< double > [1.0 , 1.0 , 0.0 ],
Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ part of vector_math_64;
25
25
* This is based on the implementation of Simplex Noise by Stefan Gustavson
26
26
* found at: http://webstaff.itn.liu.se/~stegu/simplexnoise/SimplexNoise.java
27
27
*/
28
-
28
+ @Deprecated ('This API will be removed '
29
+ '(see https:github.com/google/vector_math.dart/issues/270)' )
29
30
class SimplexNoise {
30
31
static final List <List <double >> _grad3 = < List <double >> [
31
32
< double > [1.0 , 1.0 , 0.0 ],
Original file line number Diff line number Diff line change 11
11
/// [Quad] , [Ray] , [Sphere] and [Triangle] ).
12
12
///
13
13
/// In addition some utilities are available as color operations (See [Colors]
14
- /// class), noise generators ( [SimplexNoise] ) and common OpenGL operations
15
- /// (like [makeViewMatrix] , [makePerspectiveMatrix] , or [pickRay] ).
14
+ /// class) and common OpenGL operations (like [makeViewMatrix] ,
15
+ /// [makePerspectiveMatrix] , or [pickRay] ).
16
16
library vector_math;
17
17
18
18
import 'dart:math' as math;
Original file line number Diff line number Diff line change 11
11
/// [Quad] , [Ray] , [Sphere] and [Triangle] ).
12
12
///
13
13
/// In addition some utilities are available as color operations (See [Colors]
14
- /// class), noise generators ( [SimplexNoise] ) and common OpenGL operations
15
- /// (like [makeViewMatrix] , [makePerspectiveMatrix] , or [pickRay] ).
14
+ /// class) and common OpenGL operations (like [makeViewMatrix] ,
15
+ /// [makePerspectiveMatrix] , or [pickRay] ).
16
16
library vector_math_64;
17
17
18
18
import 'dart:math' as math;
Original file line number Diff line number Diff line change 2
2
// All rights reserved. Use of this source code is governed by a BSD-style
3
3
// license that can be found in the LICENSE file.
4
4
5
+ // ignore_for_file: deprecated_member_use_from_same_package
6
+
5
7
import 'package:test/test.dart' ;
6
8
7
9
import 'package:vector_math/vector_math.dart' ;
You can’t perform that action at this time.
0 commit comments