Refactor, add extensive README.md, add future planning

This commit is contained in:
2020-05-13 00:32:28 +02:00
parent 63fd73f98c
commit 9002db40aa
26 changed files with 666 additions and 226 deletions

18
src/Tool/Tool.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
namespace Tool;
class Tool
{
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;
}
}