blob: bd254626a73176fa25bf3384927b85c1618a50b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//
// Copyright 2020 FoxyUtils ehf. All rights reserved.
//
// This is a commercial product and requires a license to operate.
// A trial license can be obtained at https://unidoc.io
//
// DO NOT EDIT: generated by unitwist Go source code obfuscator.
//
// Use of this source code is governed by the UniDoc End User License Agreement
// terms that can be accessed at https://unidoc.io/eula/
package precision ;import _d "math";const (DefaultPrecision =4;);func RoundDefault (value float64 )float64 {return RoundFloat (value ,DefaultPrecision )};func RoundFloat (value float64 ,precision int )float64 {_c :=_d .Pow (10,float64 (precision ));return _d .Round (value *_c )/_c ;
};
|