To create: Use the + button in the Parameters box.
27 | To edit: Click on the name. At the bottom of the dialog is also a delete button.
28 | To set the parameter's value, use either the sliders or enter any value into the matching text field. The text field will parse any
29 | entered formula but the parameter stores only the current value, so if a parameter is set to sin(a), it will not update when the value of a changes.
30 | Computed parameters can be defined as custom functions with no arguments.
31 |
32 |
33 |
--------------------------------------------------------------------------------
/Windows/Help/Topics/Tips.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
24 |
25 |
26 |

27 |
CPlot
28 |
version 1.10
29 |
31 |
32 |
33 |
34 |
Documentation
35 |
44 |
45 | Release Notes
46 |
50 |
51 |
52 |
53 |
54 |
--------------------------------------------------------------------------------
/Windows/MainView.h:
--------------------------------------------------------------------------------
1 | #pragma once
2 | #include "PlotView.h"
3 | #include "SideView.h"
4 | #include "MainWindow.h"
5 | #include "Controls/FocusEdit.h"
6 | class Document;
7 |
8 | class BGStatic: public CStatic
9 | {
10 | public:
11 | BOOL Create(CWnd *parent, int h, UINT ID, DWORD style);
12 | BOOL OnEraseBkgnd(CDC *dc);
13 | COLORREF bg; // background color
14 | DECLARE_MESSAGE_MAP()
15 | };
16 |
17 | class MainView : public CView
18 | {
19 | public:
20 | inline Document& GetDocument() const { return *((MainWindow*)GetParentFrame())->doc; }
21 | inline PlotView& GetPlotView() const { return const_cast