hexlet / points
Points implementation
v1.1.0
2022-01-16 12:59 UTC
Requires
- php: >=7.4 || >=8.1
Requires (Dev)
- phpunit/phpunit: ^9.5
- squizlabs/php_codesniffer: ^3.6
This package is not auto-updated.
Last update: 2025-01-13 03:10:51 UTC
README
Functions for working with Points
<?php use function Php\Points\Points\makePoint; use function Php\Points\Points\getX; use function Php\Points\Points\getY; use function Php\Points\Points\toString;
Examples
<?php $point = makePoint(1, 2); $x = getX($point); // $x = 1; $y = getY($point) // $y = 2; $example = toString($point); // $example = "(1, 2)";
This repository is created and maintained by the team and the community of Hexlet, an educational project. Read more about Hexlet.
See most active contributors on hexlet-friends.