diff --git a/src/projection.rs b/src/projection.rs index 733197c..63027f5 100644 --- a/src/projection.rs +++ b/src/projection.rs @@ -145,9 +145,12 @@ impl> ToMatrix4 for PerspectiveFov { /// A perspective projection with arbitrary left/right/bottom/top distances #[derive(Copy, Clone, PartialEq, RustcEncodable, RustcDecodable)] pub struct Perspective { - pub left: S, right: S, - pub bottom: S, top: S, - pub near: S, far: S, + pub left: S, + pub right: S, + pub bottom: S, + pub top: S, + pub near: S, + pub far: S, } impl Projection for Perspective {