nn::ulcd::CTR::StereoCamera::SetBaseFrustum Member Function

Syntax

#include <nn/ulcd.h>

void SetBaseFrustum(
     const nn::math::Matrix44 * proj
);

void SetBaseFrustum(
     f32 left,
     f32 right,
     f32 bottom,
     f32 top,
     f32 near,
     f32 far
);

List of Overloaded Member Functions

SetBaseFrustum ( const nn::math::Matrix44 * ) Sets the parameters that form the base camera's view volume.
SetBaseFrustum(f32, f32, f32, f32, f32, f32) Sets the parameters that form the base camera's view volume.

Description of SetBaseFrustum(const nn::math::Matrix44 *)

Performs an inverse calculation based on the specified projection matrix. Specify a matrix that was created using nn::math::MTX44Frustum or nn::math::MTX44Perspective.

Description of SetBaseFrustum(f32, f32, f32, f32, f32, f32)

Specifies the parameters of the view volume directly.


CONFIDENTIAL