[][src]Function nalgebra_glm::ortho_no

pub fn ortho_no<N: RealField>(
    left: N,
    right: N,
    bottom: N,
    top: N,
    znear: N,
    zfar: N
) -> TMat4<N>

Creates a matrix for a right hand orthographic-view frustum with a depth range of -1 to 1

Parameters

  • left - Coordinate for left bound of matrix
  • right - Coordinate for right bound of matrix
  • bottom - Coordinate for bottom bound of matrix
  • top - Coordinate for top bound of matrix
  • znear - Distance from the viewer to the near clipping plane
  • zfar - Distance from the viewer to the far clipping plane