/var/www/vhosts/ihelp.ro/httpdocs/vendor/imagine/imagine/src/Image
NameSizeModeActions
Fill/-0755rm
Histogram/-0755rm
Metadata/-0755rm
Palette/-0755rm
Point/-0755rm
AbstractFont.php36830644editdlrm
AbstractImage.php72280644editdlrm
AbstractImagine.php26670644editdlrm
AbstractLayers.php21410644editdlrm
Box.php32300644editdlrm
BoxInterface.php19720644editdlrm
FontInterface.php12780644editdlrm
Format.php32230644editdlrm
FormatList.php13780644editdlrm
ImageInterface.php64420644editdlrm
ImagineInterface.php27180644editdlrm
LayersInterface.php26860644editdlrm
ManipulatorInterface.php59140644editdlrm
Point.php21150644editdlrm
PointInterface.php10920644editdlrm
PointSigned.php17430644editdlrm
Profile.php16130644editdlrm
ProfileInterface.php5190644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/imagine/imagine/src/Image/PointInterface.php (1092B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Imagine\Image; /** * The point interface. */ interface PointInterface { /** * Gets points x coordinate. * * @return int */ public function getX(); /** * Gets points y coordinate. * * @return int */ public function getY(); /** * Checks if current coordinate is inside a given box. * * @param \Imagine\Image\BoxInterface $box * * @return bool */ public function in(BoxInterface $box); /** * Returns another point, moved by a given amount from current coordinates. * * @param int $amount * * @return \Imagine\Image\PointInterface */ public function move($amount); /** * Gets a string representation for the current point. * * @return string */ public function __toString(); }