| 1 | <?php |
||
| 15 | class Ellipse extends AbstractShape implements ComparableInterface |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Create a new \PhpOffice\PhpPresentation\Shape\Ellipse instance |
||
| 19 | * |
||
| 20 | * @param int $fromX |
||
| 21 | * @param int $fromY |
||
| 22 | * @param int $toX |
||
| 23 | * @param int $toY |
||
| 24 | * @param int $rotation which takes the rotation for ellipse |
||
| 25 | */ |
||
| 26 | public function __construct($fromX, $fromY, $toX, $toY, $rotation) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Get hash code |
||
| 41 | * |
||
| 42 | * @return string Hash code |
||
| 43 | */ |
||
| 44 | public function getHashCode() |
||
| 48 | |||
| 49 | } |
||
| 50 |