mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
13 lines
202 B
Ruby
13 lines
202 B
Ruby
class Float
|
|
def round_to(x)
|
|
(self * 10**x).round.to_f / 10**x
|
|
end
|
|
|
|
def ceil_to(x)
|
|
(self * 10**x).ceil.to_f / 10**x
|
|
end
|
|
|
|
def floor_to(x)
|
|
(self * 10**x).floor.to_f / 10**x
|
|
end
|
|
end
|