chore(deps): update rust crate glam to 0.27.0 - autoclosed #32
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.25.0
->0.27.0
Release Notes
bitshifter/glam-rs (glam)
v0.27.0
Compare Source
Breaking changes
fract
method to match the Rustimplementation instead of the GLSL implementation, that is
self - self.trunc()
instead ofself - self.floor()
.Added
fract_gl
which uses the GLSL specification of fract,self - self.floor()
.v0.26.0
Compare Source
Breaking changes
impl From<bool> for {f32,f64}
support.Fixed
Respect precision format specifier in Display implementations. Previously it
was ignored.
Corrected precision documentation for vector
is_normalized
methods andchanged the internal check to use
2e-4
to better match the documentedprecision value of
1e-4
.Added
Added
with_x
,with_y
, etc. to vector types which returns a copy ofthe vector with the new component value.
Added
midpoint
method to vector types that returns the point between twopoints.
Added
move_towards
for float vector types.Added saturating add and sub methods for signed and unsigned integer vector
types.
Added element wise sum and product methods for vector types.
Added element wise absolute values method for matrix types.
Added
from_array
method for boolean vector types.Added
normalize_or
method to vector types that returns the specified valueif normalization failed.
Added
From<BVecN>
support for all vector types.Added
Div
andDivAssign
by scalar implementations to matrix types.Configuration
📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.