@@ -512,6 +512,28 @@ highly performant 2D graphics.
512
512
513
513
[ terramach ] : https://github.com/lykhonis/terramach
514
514
515
+ ### [ glam]
516
+
517
+ [ glam] is a simple and fast linear algebra crate for games and graphics.
518
+
519
+ This month version 0.11.2 was released. There were a number of important changes
520
+ since the last newsletter.
521
+
522
+ The vector accessor methods for setting and getting individual vector elements
523
+ were replaced with direct access support. This means that now instead of needing
524
+ to use ` .x() ` , ` .set_x(x) ` or ` .mut_x() = x ` the element may be accessed
525
+ directly via ` .x = x ` and so on.
526
+
527
+ The reason that this was not done originally was that some types are backed by
528
+ SIMD types which do not support direct access. For these types direct access is
529
+ now supported with ` Deref ` and ` DerefMut ` implementations.
530
+
531
+ The direct access support was added in version 0.10.1 along side the accessor
532
+ methods. The accessor methods were deprecated in 0.10.2 and have been removed
533
+ in 0.11.0.
534
+
535
+ [ glam ] : https://github.com/bitshifter/glam-rs
536
+
515
537
### [ rib]
516
538
517
539
![ rib] ( rib.gif )
@@ -805,28 +827,6 @@ build and release a [bevy] game to itch.io for Linux, macOS, Windows and WASM.
805
827
[ bevy ] : https://bevyengine.org
806
828
[ tract ] : https://github.com/sonos/tract
807
829
808
- ### [ glam]
809
-
810
- [ glam] is a simple and fast linear algebra crate for games and graphics.
811
-
812
- This month version 0.11.2 was released. There were a number of important changes
813
- since the last newsletter.
814
-
815
- The vector accessor methods for setting and getting individual vector elements
816
- were replaced with direct access support. This means that now instead of needing
817
- to use ` .x() ` , ` .set_x(x) ` or ` .mut_x() = x ` the element may be accessed
818
- directly via ` .x = x ` and so on.
819
-
820
- The reason that this was not done originally was that some types are backed by
821
- SIMD types which do not support direct access. For these types direct access is
822
- now supported with ` Deref ` and ` DerefMut ` implementations.
823
-
824
- The direct access support was added in version 0.10.1 along side the accessor
825
- methods. The accessor methods were deprecated in 0.10.2 and have been removed
826
- in 0.11.0.
827
-
828
- [ glam ] : https://github.com/bitshifter/glam-rs
829
-
830
830
## Popular Workgroup Issues in Github
831
831
832
832
<!-- Up to 10 links to interesting issues -->
0 commit comments