points = $points; $this->borderSize = $borderSize; $this->borderColor = $borderColor; $this->fillColor = $fillColor; } /** * @return int */ public function getWidth() { return $this->width; } /** * @return int */ public function getHeight() { return $this->height; } /** * @return array */ public function getPoints() { return $this->points; } /** * @return int */ public function getBorderSize() { return $this->borderSize; } /** * @return Color */ public function getFillColor() { return $this->fillColor; } /** * @return Color */ public function getBorderColor() { return $this->borderColor; } }