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

◆ set_bounds()

void MayaFlux::Nodes::GpuSync::SDFNode::set_bounds ( const glm::vec3 &  bounds_min,
const glm::vec3 &  bounds_max 
)

Replace the evaluation volume and mark dirty.

Parameters
bounds_minNew minimum corner.
bounds_maxNew maximum corner.

Definition at line 35 of file SDFNode.cpp.

36{
37 m_bounds_min = bounds_min;
38 m_bounds_max = bounds_max;
39 m_dirty = true;
40}

References m_bounds_max, m_bounds_min, and m_dirty.