PMA\libraries\plugins\schema\eps\Eps::moveTo PHP Метод

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

The moveto operator takes two numbers off the stack and treats them as x and y coordinates to which to move. The coordinates specified become the current point.
public moveTo ( integer $x, integer $y ) : void
$x integer The x attribute defines the left position of the element
$y integer The y attribute defines the right position of the element
Результат void
    public function moveTo($x, $y)
    {
        $this->stringCommands .= $x . ' ' . $y . " moveto \n";
    }