philips-cnc6600-interpreter/src/Automata/Modes/G/WorkCycle.php

18 lines
235 B
PHP

<?php
namespace Automata\Modes\G;
class WorkCycle extends G
{
public int $X = 0;
public int $Y = 0;
public int $Z = 0;
public int $B = 0;
public function supports(int $G): bool
{
return in_array($G, [81, 84, 85, 86]);
}
}