philips-cnc6600-interpreter/src/Automata/ToolData.php

19 lines
276 B
PHP

<?php
namespace Automata;
class ToolData
{
public int $T; // Tool number
public int $X; // Radius in 0.001 mm
public int $Z; // Length offset in 0.002 mm
public function __construct(int $T, int $X, int $Z)
{
$this->T = $T;
$this->X = $X;
$this->Z = $Z;
}
}