JansenFelipe\OMR\Point::moveY PHP Метод

moveY() публичный Метод

Move the point at $position on the Y axis
public moveY ( integer $position ) : Point
$position integer
Результат Point
    public function moveY($position)
    {
        $this->y = $this->y + $position;
        return $this;
    }