Files
2018-09-21 02:44:25 +02:00

32 lines
567 B
PHP

<?php
/*
+-------------------------------------------------------------+
| Copyright (c) 2014 Facebook, Inc. (http://www.facebook.com) |
+-------------------------------------------------------------+
*/
namespace Graphics\D2
{
error_reporting(-1);
include_once 'Point.inc';
class Circle
{
private $center;
private $radius;
public function __construct($x = 0, $y = 0, $radius = 0)
{
$this->center = new Point($x, $y);
$this->radius = $radius;
}
public function __toString()
{
return '[' . $this->center . ':' . $this->radius . ']';
}
}
}