Struct nalgebra::geometry::Orthographic3 [] [src]

pub struct Orthographic3<N: Real> { /* fields omitted */ }

A 3D orthographic projection stored as an homogeneous 4x4 matrix.

Methods

impl<N: Real> Orthographic3<N>
[src]

[src]

Creates a new orthographic projection matrix.

[src]

Wraps the given matrix to interpret it as a 3D orthographic matrix.

It is not checked whether or not the given matrix actually represents an orthographic projection.

[src]

Creates a new orthographic projection matrix from an aspect ratio and the vertical field of view.

[src]

Retrieves the inverse of the underlying homogeneous matrix.

[src]

Computes the corresponding homogeneous matrix.

[src]

A reference to the underlying homogeneous transformation matrix.

[src]

Retrieves the underlying homogeneous matrix.

[src]

The smallest x-coordinate of the view cuboid.

[src]

The largest x-coordinate of the view cuboid.

[src]

The smallest y-coordinate of the view cuboid.

[src]

The largest y-coordinate of the view cuboid.

[src]

The near plane offset of the view cuboid.

[src]

The far plane offset of the view cuboid.

[src]

Projects a point. Faster than matrix multiplication.

[src]

Un-projects a point. Faster than multiplication by the underlying matrix inverse.

[src]

Projects a vector. Faster than matrix multiplication.

[src]

Sets the smallest x-coordinate of the view cuboid.

[src]

Sets the largest x-coordinate of the view cuboid.

[src]

Sets the smallest y-coordinate of the view cuboid.

[src]

Sets the largest y-coordinate of the view cuboid.

[src]

Sets the near plane offset of the view cuboid.

[src]

Sets the far plane offset of the view cuboid.

[src]

Sets the view cuboid coordinates along the x axis.

[src]

Sets the view cuboid coordinates along the y axis.

[src]

Sets the near and far plane offsets of the view cuboid.

Trait Implementations

impl<N: Real> Copy for Orthographic3<N>
[src]

impl<N: Real> Clone for Orthographic3<N>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<N: Real> Debug for Orthographic3<N>
[src]

[src]

Formats the value using the given formatter. Read more

impl<N: Real> PartialEq for Orthographic3<N>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl<N: Real + Rand> Rand for Orthographic3<N>
[src]

[src]

Generates a random instance of this type using the specified source of randomness. Read more

Auto Trait Implementations

impl<N> Send for Orthographic3<N>

impl<N> Sync for Orthographic3<N>