OrthographicLens
data class OrthographicLens<T : Number, Comparable<T>>(val left: T, val right: T = -left, val bottom: T, val top: T = -bottom, val near: T, val far: T, val type: KClass<T>) : Lens<T>
A lens for an orthographic (parallel) projection defined by a given set of clipping planes: left, right, bottom, top, near and far.