Engauge Digitizer  2
Functions
CoordsType.cpp File Reference
#include "CoordsType.h"
Include dependency graph for CoordsType.cpp:

Go to the source code of this file.

Functions

QString coordsTypeToString (CoordsType coordsType)
 

Function Documentation

◆ coordsTypeToString()

QString coordsTypeToString ( CoordsType  coordsType)

Definition at line 9 of file CoordsType.cpp.

10 {
11  QString rtn;
12 
13  switch (coordsType) {
15  rtn = "Cartesian";
16  break;
17 
18  case COORDS_TYPE_POLAR:
19  rtn = "Polar";
20  break;
21  }
22 
23  return rtn;
24 }