JansenFelipe\OMR\Point::moveY PHP Method

moveY() public method

Move the point at $position on the Y axis
public moveY ( integer $position ) : Point
$position integer
return Point
    public function moveY($position)
    {
        $this->y = $this->y + $position;
        return $this;
    }