OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
linear.hpp
1#pragma once
3namespace ossia
4{
5template <typename Y>
6struct curve_segment_linear
7{
8 Y operator()(double ratio, Y start, Y end) const noexcept
9 {
10 return ossia::easing::ease{}(start, end, ratio);
11 }
12};
13}
Definition git_info.h:7