rv.data.Graphics.Path.Shape.RoundedRectangle
*/
class RoundedRectangle extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field double roundness = 1;
*/
protected $roundness = 0.0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type float $roundness
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\GraphicsData::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field double roundness = 1;
* @return float
*/
public function getRoundness()
{
return $this->roundness;
}
/**
* Generated from protobuf field double roundness = 1;
* @param float $var
* @return $this
*/
public function setRoundness($var)
{
GPBUtil::checkDouble($var);
$this->roundness = $var;
return $this;
}
}