Exemple #1
0
 public string FormatFixedPointValues(float currentValue, float change, bool displayChange = true, bool exactDisplay = true, int digitsPastRadix = 0)
 {
     return(SimpleWatchDisplay.FormatFixedPointValues(currentValue, change, displayChange, exactDisplay, digitsPastRadix));
 }
Exemple #2
0
 public string FormatIntegerValues(int currentValue, int change, bool displayChange = true, bool asHex = false, bool asSigned = true)
 {
     return(SimpleWatchDisplay.FormatIntegerValues(currentValue, change, displayChange, asHex, asSigned));
 }