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 {