AC-Vector-Fancy-2.0.0: Fancy type system stuff for AC-Vector

Data.Vector.Fancy

Description

Various facilities for dealing with vectors generically.

Synopsis

Documentation

class VectorAxis vector axis whereSource

Class for generically reading/writing vector coordinates.

Methods

get_coord :: axis -> vector -> ScalarSource

Read from the specified coordinate axis.

set_coord :: axis -> Scalar -> vector -> vectorSource

Replace the existing value of the given coordinate axis.

class Project lo hi whereSource

This class relates two vector types having consecutive sizes.

Methods

orthographic_down :: hi -> (lo, Scalar)Source

Reduce number of dimensions by one. (Return the dropped dimension as a Scalar.)

orthographic_up :: (lo, Scalar) -> hiSource

Increase number of dimensions by one. (Supply value for new dimension as a Scalar.)

perspective_down :: hi -> (lo, Scalar)Source

Perspective-project to N-1 dimensions. (Also return the distance from the camera as a Scalar.)

perspective_up :: (lo, Scalar) -> hiSource

Inverse-perspective project into N+1 dimension. (Supply the distance from the camera as a Scalar.)