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

◆ force_use_internal()

template<typename... Args>
requires std::constructible_from<Nodes::Generator::Polynomial, Args...>
void MayaFlux::Buffers::PolynomialProcessor::force_use_internal ( Args &&...  args)
inline

Forces the processor to use the internal polynomial node.

This is useful when the polynomial node is connected to other nodes and we want to ensure that the processor uses its own internal polynomial node instead of the one provided in the constructor.

Definition at line 129 of file PolynomialProcessor.hpp.

130 {
131 m_pending_polynomial = std::make_shared<Nodes::Generator::Polynomial>(std::forward<Args>(args)...);
132 }
std::shared_ptr< Nodes::Generator::Polynomial > m_pending_polynomial
Internal polynomial node.