1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-04 14:13:37 +02:00
MLEM/MLEM/Extensions/NumberExtensions.cs

16 lines
294 B
C#
Raw Normal View History

2019-08-06 14:20:11 +02:00
using System;
namespace MLEM.Extensions {
public static class NumberExtensions {
public static int Floor(this float f) {
return (int) Math.Floor(f);
}
public static int Ceil(this float f) {
return (int) Math.Ceiling(f);
}
}
}