bevy/crates/bevy_gizmos
Joona Aalto 9bd6cc0a5e
Add Direction3dA and move direction types out of primitives (#12018)
# Objective

Split up from #12017, add an aligned version of `Direction3d` for SIMD,
and move direction types out of `primitives`.

## Solution

Add `Direction3dA` and move direction types into a new `direction`
module.

---

## Migration Guide

The `Direction2d`, `Direction3d`, and `InvalidDirectionError` types have
been moved out of `bevy::math::primitives`.

Before:

```rust
use bevy::math::primitives::Direction3d;
```

After:

```rust
use bevy::math::Direction3d;
```

---------

Co-authored-by: Alice Cecile <alice.i.cecile@gmail.com>
2024-02-26 13:57:49 +00:00
..
macros Bump Version after Release (#12020) 2024-02-21 20:58:59 +00:00
src Add Direction3dA and move direction types out of primitives (#12018) 2024-02-26 13:57:49 +00:00
Cargo.toml Bump Version after Release (#12020) 2024-02-21 20:58:59 +00:00