From 2d72627937e6b8dca672ed4dbc2de16577400623 Mon Sep 17 00:00:00 2001 From: Renan <6718144+renancaraujo@users.noreply.github.com> Date: Sat, 14 Dec 2024 21:10:48 +0000 Subject: [PATCH] refactor!: Use vector_math 32 instead of 64 (#96) # Description Related to https://github.com/flame-engine/flame/pull/3405 ## Checklist - [x] The title of my PR starts with a [Conventional Commit] prefix (`fix:`, `feat:`, `docs:` etc). - [x] I have read the [Contributor Guide] and followed the process outlined for submitting PRs. - [x] I have updated/added tests for ALL new/updated/fixed functionality. - [x] I have updated/added relevant documentation in `docs` and added dartdoc comments with `///`. - [x] I have updated/added relevant examples in `examples`. ## Breaking Change - [x] Yes, this is a breaking change. - [ ] No, this is *not* a breaking change. ## Related Issues [issue database]: https://github.com/flame-engine/flame/issues [Contributor Guide]: https://github.com/flame-engine/flame/blob/main/CONTRIBUTING.md [Flame Style Guide]: https://github.com/flame-engine/flame/blob/main/STYLEGUIDE.md [Conventional Commit]: https://conventionalcommits.org --- packages/forge2d/lib/src/vector_math.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/forge2d/lib/src/vector_math.dart b/packages/forge2d/lib/src/vector_math.dart index 1ea90fdb..7b84268f 100644 --- a/packages/forge2d/lib/src/vector_math.dart +++ b/packages/forge2d/lib/src/vector_math.dart @@ -1,2 +1,2 @@ -export 'package:vector_math/vector_math_64.dart' +export 'package:vector_math/vector_math.dart' show Vector2, Matrix2, Vector3, Matrix3;