Engauge Digitizer 2
Loading...
Searching...
No Matches
Enumerations | Functions
CoordsType.h File Reference
#include <QString>
Include dependency graph for CoordsType.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Enumerations

enum  CoordsType { COORDS_TYPE_CARTESIAN , COORDS_TYPE_POLAR }
 

Functions

QString coordsTypeToString (CoordsType coordsType)
 

Enumeration Type Documentation

◆ CoordsType

Enumerator
COORDS_TYPE_CARTESIAN 
COORDS_TYPE_POLAR 

Definition at line 12 of file CoordsType.h.

12 {
15};
@ COORDS_TYPE_POLAR
Definition CoordsType.h:14
@ COORDS_TYPE_CARTESIAN
Definition CoordsType.h:13

Function Documentation

◆ coordsTypeToString()

QString coordsTypeToString ( CoordsType coordsType)
extern

Definition at line 9 of file CoordsType.cpp.

10{
12
13 switch (coordsType) {
15 rtn = "Cartesian";
16 break;
17
19 rtn = "Polar";
20 break;
21 }
22
23 return rtn;
24}
const int INNER_RADIUS_MIN