Esempio n. 1
0
 /**
  * Returns the color saturation
  *
  * @param boolean $raw Return raw value?
  * @return mixed
  */
 public function getSaturation($raw = false)
 {
     return $raw ? $this->color->getSaturation() : new ILess_Node_Dimension(ILess_Math::round(ILess_Math::multiply($this->color->getSaturation(), 100)), '%');
 }