1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-29 08:40:33 +02:00
This commit is contained in:
Oliver Vogel
2013-04-14 13:17:24 +02:00
parent fb2596456d
commit 08c3ec7c6d

View File

@@ -1027,7 +1027,7 @@ class Image
*/ */
public function circle($color, $x = 0, $y = 0, $radius = 10, $filled = true) public function circle($color, $x = 0, $y = 0, $radius = 10, $filled = true)
{ {
return $this->ellipse($color, $x, $y, $radius, $radius, $filled); return $this->ellipse($color, $x, $y, $radius * 2, $radius * 2, $filled);
} }
/** /**