Package graphics.glimpse.lenses

Types

FrustumLens
Link copied to clipboard
common
data class FrustumLens(left: Float, right: Float, bottom: Float, top: Float, near: Float, far: Float) : Lens
A lens for a perspective projection defined by a given frustum.
Lens
Link copied to clipboard
common
interface Lens
An interface for a lens.
OrthographicLens
Link copied to clipboard
common
data class OrthographicLens(left: Float, right: Float, bottom: Float, top: Float, near: Float, far: Float) : Lens
A lens for an orthographic (parallel) projection defined by a given set of clipping planes: left, right, bottom, top, near and far.
PerspectiveLens
Link copied to clipboard
common
data class PerspectiveLens(fovY: Angle, aspect: Float, near: Float, far: Float) : Lens
A lens for a perspective projection defined by a given frustum.