Epok Engine

EPOK RUNTIME

epok::chunk_bounds_isolated_x

Function · 1 overload

Function

Detect once per object.

Belongs to
epok
Header
frustum.hpp
Overloads
1

Declaration

Declaration
inline bool chunk_bounds_isolated_x(const int32_t rows[3][3])

Detect once per object.

ParameterTypeMeaning
rowsconst int32_t[3][3]Value supplied for rows. Keep referenced or pointed-to data valid for the complete call.

Returns: bool. Check the value before continuing when it represents success, availability or a resource handle.

Example

C++ example
#include "frustum.hpp"

// Assume these named values have been initialized with valid data:
// const int32_t[3][3] rows

auto result = epok::chunk_bounds_isolated_x(rows);

Why use it

The boolean result makes success, availability or state explicit without exceptions.

Trade-offs and warnings

Check the return value; `false` is part of normal control flow for many PSX resource operations.

Declared in runtime/frustum.hpp:6

Related members