From 06ea3ee61dc7440a4137033ff3270c9bf0029ca3 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Thu, 26 Sep 2024 15:06:27 -0700 Subject: [PATCH] column major --- src/newtypes/model.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/newtypes/model.rs b/src/newtypes/model.rs index 0caeb44..6d3ce51 100644 --- a/src/newtypes/model.rs +++ b/src/newtypes/model.rs @@ -243,7 +243,7 @@ impl Into for Model{ attributes:strafesnet_common::gameplay_attributes::CollisionAttributesId::new(self.attributes), color:strafesnet_common::model::Color4::from_array(self.color), transform:strafesnet_common::integer::Planar64Affine3::new( - strafesnet_common::integer::Planar64Mat3::from_rows([ + strafesnet_common::integer::Planar64Mat3::from_cols([ strafesnet_common::integer::vec3::raw_xyz(_0,_1,_2), strafesnet_common::integer::vec3::raw_xyz(_3,_4,_5), strafesnet_common::integer::vec3::raw_xyz(_6,_7,_8)