File: curve.cpp

package info (click to toggle)
amoeba 1.1-13
  • links: PTS
  • area: contrib
  • in suites: sarge
  • size: 732 kB
  • ctags: 971
  • sloc: cpp: 8,315; makefile: 178
file content (13 lines) | stat: -rw-r--r-- 268 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "curve.h"
#include "demolib_prefs.h"

#if DEMOLIB_MAINLOOP

Curve::Curve() {}
Curve::~Curve() {}

void Curve::add_curvepoint(float x, float y) {}
void Curve::end_curvepoints(float start, float length) {}
float Curve::get_value(float x) { return x; }

#endif