MayaFlux 0.5.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ corner_count()

size_t MayaFlux::Kinesis::Lattice3D::corner_count ( ) const
inlinenoexcept

Corner count, one greater than the cell count on each axis.

Definition at line 42 of file Lattice.hpp.

43 {
44 return static_cast<size_t>(resolution.x + 1U)
45 * (resolution.y + 1U) * (resolution.z + 1U);
46 }
glm::uvec3 resolution
Cell count per axis. Zero on any axis is invalid.
Definition Lattice.hpp:26

References resolution.