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

◆ set_bounds()

void MayaFlux::Buffers::ComputeMeshBuffer::set_bounds ( const glm::vec3 &  bounds_min,
const glm::vec3 &  bounds_max 
)

Replace the evaluation volume and mark dirty.

Definition at line 177 of file ComputeMeshBuffer.cpp.

178{
179 if (m_sdf_processor) {
180 m_sdf_processor->set_bounds(bounds_min, bounds_max);
181 } else {
182 m_bounds_min = bounds_min;
183 m_bounds_max = bounds_max;
184 }
185}
std::shared_ptr< SDFMeshProcessor > m_sdf_processor

References m_bounds_max, m_bounds_min, and m_sdf_processor.