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

Data.Vector.Fancy

Contents

Description

Various facilities for dealing with vectors, vector spaces and coordinate axies generically.

Synopsis

Vector spaces

class HasSpace x Source

This class deals with any type that has a spatial dimensionallity. This includes coordinate transforms, bounding boxes, and so on.

Null instances are provided for all the vector types. (E.g., Point Vector3 = Vector3.)

Associated Types

type Point x :: *Source

Give the appropriate kind of vector for this type.

Vector axies

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.

Vector projection

class (Vector v, Vector (ProjectTo v)) => Project v whereSource

This class enables you to take a vector with N dimensions and project it into an N+1 dimensional space (and also take the inverse projection to get back again).

Associated Types

type ProjectTo v :: *Source

The next-largest vector type. (E.g., ProjectTo Vector2 = Vector3.)

Methods

orthographic_down :: ProjectTo v -> (v, Scalar)Source

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

orthographic_up :: (v, Scalar) -> ProjectTo vSource

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

perspective_down :: ProjectTo v -> (v, Scalar)Source

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

perspective_up :: (v, Scalar) -> ProjectTo vSource

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