Jyxo\Color::toGrayScale PHP Method

toGrayScale() public method

Returns the currect color converted to grayscale.
public toGrayScale ( ) : self
return self
    public function toGrayScale() : self
    {
        $gray = new self();
        $gray->setLuminance($this->getLuminance());
        return $gray;
    }