class Sass::Script::Number

def self.precision=(digits)

`3.1415926` will be printed as `3.142`.
For example, if this is `3`,
Sets the number of digits of precision
def self.precision=(digits)
  @precision = digits.round
  @precision_factor = 10.0**@precision
end