Deepnote Synthesizer Voice Library v1.0.0
A C++14 header-only library implementing the THX Deep Note effect
Loading...
Searching...
No Matches
linear.hpp
Go to the documentation of this file.
1
34#pragma once
35
36namespace deepnote
37{
38
39struct LinearUnitShaper
40{
41 float operator()(const float value) const { return value; }
42};
43
44} // namespace deepnote