Skip to content

refactor the locations of the 'noise.dart' part files #273

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
## 2.1.4

- Refactor the locations of the `SimplexNoise` related part files.

## 2.1.3

- `operator ==` overrides no longer take nullable arguments. This is only
visible for classes that implement the interfaces defined in this package
which no longer need to also widen the argument type.
- Deprecate `SimplexNoise`; see https:github.com/google/vector_math.dart/issues/270
for more information.
- Deprecate `SimplexNoise` (see https:github.com/google/vector_math.dart/issues/270
for more information).

## 2.1.2

Expand Down
4 changes: 2 additions & 2 deletions lib/vector_math.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ library vector_math;
import 'dart:math' as math;
import 'dart:typed_data';

part 'src/vector_math/utilities.dart';
part 'src/vector_math/aabb2.dart';
part 'src/vector_math/aabb3.dart';
part 'src/vector_math/colors.dart';
Expand All @@ -29,15 +28,16 @@ part 'src/vector_math/intersection_result.dart';
part 'src/vector_math/matrix2.dart';
part 'src/vector_math/matrix3.dart';
part 'src/vector_math/matrix4.dart';
part 'src/vector_math/noise.dart';
part 'src/vector_math/obb3.dart';
part 'src/vector_math/opengl.dart';
part 'src/vector_math/plane.dart';
part 'src/vector_math/quad.dart';
part 'src/vector_math/quaternion.dart';
part 'src/vector_math/ray.dart';
part 'src/vector_math/sphere.dart';
part 'src/vector_math/third_party/noise.dart';
part 'src/vector_math/triangle.dart';
part 'src/vector_math/utilities.dart';
part 'src/vector_math/vector.dart';
part 'src/vector_math/vector2.dart';
part 'src/vector_math/vector3.dart';
Expand Down
4 changes: 2 additions & 2 deletions lib/vector_math_64.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ library vector_math_64;
import 'dart:math' as math;
import 'dart:typed_data';

part 'src/vector_math_64/utilities.dart';
part 'src/vector_math_64/aabb2.dart';
part 'src/vector_math_64/aabb3.dart';
part 'src/vector_math_64/colors.dart';
Expand All @@ -29,15 +28,16 @@ part 'src/vector_math_64/intersection_result.dart';
part 'src/vector_math_64/matrix2.dart';
part 'src/vector_math_64/matrix3.dart';
part 'src/vector_math_64/matrix4.dart';
part 'src/vector_math_64/noise.dart';
part 'src/vector_math_64/obb3.dart';
part 'src/vector_math_64/opengl.dart';
part 'src/vector_math_64/plane.dart';
part 'src/vector_math_64/quad.dart';
part 'src/vector_math_64/quaternion.dart';
part 'src/vector_math_64/ray.dart';
part 'src/vector_math_64/sphere.dart';
part 'src/vector_math_64/third_party/noise.dart';
part 'src/vector_math_64/triangle.dart';
part 'src/vector_math_64/utilities.dart';
part 'src/vector_math_64/vector.dart';
part 'src/vector_math_64/vector2.dart';
part 'src/vector_math_64/vector3.dart';
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: vector_math
version: 2.1.3
version: 2.1.4
description: A Vector Math library for 2D and 3D applications.
repository: https://github.com/google/vector_math.dart

Expand Down