score
Home
Classes
Namespaces
Files
InterpolationColors.hpp
1
#pragma once
2
#include <Curve/CurveStyle.hpp>
3
4
namespace
Interpolation
5
{
6
class
Colors
7
{
8
public
:
9
Colors
(
const
score::Skin
& s);
10
11
const
auto
& style()
const
{
return
m_style; }
12
13
private
:
14
Curve::Style
m_style;
15
};
16
}
Interpolation::Colors
Definition:
InterpolationColors.hpp:7
score::Skin
Definition:
Skin.hpp:93
Curve::Style
Definition:
CurveStyle.hpp:13