OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
sin.hpp
1
#pragma once
2
#include <cmath>
3
namespace
ossia
4
{
5
template
<
typename
Y>
6
struct
curve_segment_sin
7
{
8
auto
operator()(
double
freq,
double
phase,
double
ampl)
const
9
{
10
return
[=](
double
ratio, Y start, Y end) {
11
return
start + ampl * std::sin(phase + two_pi * ratio * freq) * (end - start);
12
};
13
}
14
};
15
}
ossia
Definition
git_info.h:7
src
ossia
editor
curve
curve_segment
sin.hpp
Generated on Mon Mar 31 2025 23:58:28 for OSSIA by
1.9.8