philips-cnc6600-interpreter/src/Tool/Tool.php

19 lines
268 B
PHP
Raw Normal View History

2020-05-08 00:37:29 +02:00
<?php
namespace Tool;
2020-05-08 00:37:29 +02:00
class Tool
2020-05-08 00:37:29 +02:00
{
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;
}
}