From 16aa5c8937daa797b0c134149016921eeb95dc37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Thu, 3 Apr 2014 20:52:52 +0200 Subject: [PATCH] Make Iso* fields public again. --- src/structs/iso.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/structs/iso.rs b/src/structs/iso.rs index b586e548..fc543ace 100644 --- a/src/structs/iso.rs +++ b/src/structs/iso.rs @@ -23,9 +23,9 @@ mod iso_macros; #[deriving(TotalEq, Eq, Encodable, Decodable, Clone, Show)] pub struct Iso2 { /// The rotation applicable by this isometry. - rotation: Rot2, + pub rotation: Rot2, /// The translation applicable by this isometry. - translation: Vec2 + pub translation: Vec2 } /// Three dimensional isometry. @@ -35,9 +35,9 @@ pub struct Iso2 { #[deriving(TotalEq, Eq, Encodable, Decodable, Clone, Show)] pub struct Iso3 { /// The rotation applicable by this isometry. - rotation: Rot3, + pub rotation: Rot3, /// The translation applicable by this isometry. - translation: Vec3 + pub translation: Vec3 } /// Four dimensional isometry. @@ -46,9 +46,9 @@ pub struct Iso3 { #[deriving(TotalEq, Eq, Encodable, Decodable, Clone, Show)] pub struct Iso4 { /// The rotation applicable by this isometry. - rotation: Rot4, + pub rotation: Rot4, /// The translation applicable by this isometry. - translation: Vec4 + pub translation: Vec4 } impl Iso3 {