forked from swissmicros/SDKdemo
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathplot.h
51 lines (47 loc) · 1.57 KB
/
plot.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#ifndef PLOT_H
#define PLOT_H
// ****************************************************************************
// plot.h DB48X project
// ****************************************************************************
//
// File Description:
//
// Function and curve plotting
//
//
//
//
//
//
//
//
// ****************************************************************************
// (C) 2023 Christophe de Dinechin <[email protected]>
// This software is licensed under the terms outlined in LICENSE.txt
// ****************************************************************************
// This file is part of DB48X.
//
// DB48X is free software: you can redistribute it and/or modify
// it under the terms outlined in the LICENSE.txt file
//
// DB48X is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// ****************************************************************************
#include "command.h"
#include "graphics.h"
COMMAND_DECLARE(Function,1);
COMMAND_DECLARE(Polar,1);
COMMAND_DECLARE(Parametric,1);
COMMAND_DECLARE(Scatter,1);
COMMAND_DECLARE(Bar,1);
COMMAND_DECLARE(Draw,0);
COMMAND_DECLARE(Drax,0);
struct Equation : command
// ----------------------------------------------------------------------------
// A shortcut name for `EQ`
// ----------------------------------------------------------------------------
{
Equation(id ty = ID_Equation): command(ty) {}
};
#endif // PLOT_H