#include <QString>
Go to the source code of this file.
◆ CentipedeState
Set of possible states of Centipede construction.
Enumerator |
---|
CENTIPEDE_STATE_BUILD_CARTESIAN | |
CENTIPEDE_STATE_BUILD_POLAR | |
CENTIPEDE_STATE_PREBUILD | |
NUM_CENTIPEDE_STATES | |
Definition at line 13 of file CentipedeState.h.
13 {
18};
@ CENTIPEDE_STATE_BUILD_CARTESIAN
@ CENTIPEDE_STATE_PREBUILD
@ CENTIPEDE_STATE_BUILD_POLAR
◆ centipedeStateAsString()
Definition at line 14 of file CentipedeState.cpp.
15{
16 if (centipedeStateHash.size () == 0) {
17
18
22 }
23
24 if (centipedeStateHash.contains (state)) {
25 return centipedeStateHash [state];
26 } else {
27 return "?";
28 }
29}