Is there a way to avoid a loss of precision when concerting between floating point numbers and strings? For example:
myIdentifiers.set("sliderincr", String(".01").getFloatValue()); Logger::writeToLog(myIdentifiers.getWithDefault("sliderincr", -1).toString());
The value printed out is 0.00999999978 which funks up my on-screen slider values. From my limited knowledge I would have thought there would be no loss of precision in this case but it seems there is? Any ideas?