if (Inverse)
constdouble pi = 3.14159265358979323846;
elseconstdouble pi = -3.14159265358979323846;
This is called the ternary operator.
In this case, it's very useful since const must be initialized and getting it the correct scope can prove sloppy. The ternary operator returns the result where as my if/else statement would not.