FrustumLens
data class FrustumLens( val left: Float, val right: Float = -left, val bottom: Float, val top: Float = -bottom, val near: Float, val far: Float) : Lens
Content copied to clipboard
A lens for a perspective projection defined by a given frustum.
The frustum is defined by its near and far depth clipping planes, and its left, right, bottom and top clipping planes (specified at the near depth).