AcTools.Utils.MathUtils.ToIntPercentage C# (CSharp) Method

ToIntPercentage() public static method

public static ToIntPercentage ( this value ) : int
value this
return int
        public static int ToIntPercentage(this double value) => (100 * value).RoundToInt();