Engauge Digitizer 2
Loading...
Searching...
No Matches
CurveConnectAs.h
1/******************************************************************************************************
2 * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released *
3 * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file *
4 * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. *
5 ******************************************************************************************************/
6
7#ifndef CURVE_CONNECT_AS
8#define CURVE_CONNECT_AS
9
10#include <QString>
11
12enum CurveConnectAs {
13 CONNECT_AS_FUNCTION_SMOOTH,
14 CONNECT_AS_FUNCTION_STRAIGHT,
15 CONNECT_AS_RELATION_SMOOTH,
16 CONNECT_AS_RELATION_STRAIGHT,
17 CONNECT_SKIP_FOR_AXIS_CURVE
18};
19
20extern QString curveConnectAsToString (CurveConnectAs curveConnectAs);
21
22#endif // CURVE_CONNECT_AS
23
24