You've already forked pico-launcher
mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-01-09 16:28:48 -08:00
11 lines
158 B
C++
11 lines
158 B
C++
#pragma once
|
|
#include "Curve.h"
|
|
|
|
class LinearCurve : public Curve
|
|
{
|
|
public:
|
|
fix32<26> Compute(fix32<26> t) const override
|
|
{
|
|
return t;
|
|
}
|
|
}; |