rv.data.Graphics.Feather
*/
class Feather extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field .rv.data.Graphics.Feather.Style style = 1;
*/
protected $style = 0;
/**
* Generated from protobuf field double radius = 2;
*/
protected $radius = 0.0;
/**
* Generated from protobuf field bool enable = 3;
*/
protected $enable = false;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $style
* @type float $radius
* @type bool $enable
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\GraphicsData::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field .rv.data.Graphics.Feather.Style style = 1;
* @return int
*/
public function getStyle()
{
return $this->style;
}
/**
* Generated from protobuf field .rv.data.Graphics.Feather.Style style = 1;
* @param int $var
* @return $this
*/
public function setStyle($var)
{
GPBUtil::checkEnum($var, \Rv\Data\Graphics\Feather\Style::class);
$this->style = $var;
return $this;
}
/**
* Generated from protobuf field double radius = 2;
* @return float
*/
public function getRadius()
{
return $this->radius;
}
/**
* Generated from protobuf field double radius = 2;
* @param float $var
* @return $this
*/
public function setRadius($var)
{
GPBUtil::checkDouble($var);
$this->radius = $var;
return $this;
}
/**
* Generated from protobuf field bool enable = 3;
* @return bool
*/
public function getEnable()
{
return $this->enable;
}
/**
* Generated from protobuf field bool enable = 3;
* @param bool $var
* @return $this
*/
public function setEnable($var)
{
GPBUtil::checkBool($var);
$this->enable = $var;
return $this;
}
}