Вход Регистрация
Файл: vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Coordinate/Point.php
Строк: 26
<?php

/*
 * This file is part of PHP-FFmpeg.
 *
 * (c) Alchemy <info@alchemy.fr>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace FFMpegCoordinate;

class 
Point
{
    private 
$x;
    private 
$y;

    public function 
__construct($x$y$dynamic false)
    {
        if (
$dynamic) {
            
$this->$x;
            
$this->$y;
        } else {
            
$this->= (int) $x;
            
$this->= (int) $y;
        }
    }

    
/**
     * @return int
     */
    
public function getX()
    {
        return 
$this->x;
    }

    
/**
     * @return int
     */
    
public function getY()
    {
        return 
$this->y;
    }
}
Онлайн: 4
Реклама