This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- Stammdaten ------ | |
| #let my_name = "Otto Normalverbraucher" | |
| #let my_iban = "DE49201202005467194628" | |
| #let my_address = ("Sesamstr. 7", "Stuttgart, BW 70173") | |
| #let your_name = "Max Muster" | |
| #let your_address = ("Musterfirma", "Sesamstr. 5", "Stuttgart, BW 70173") | |
| #let anrede = "Sehr geehrter Herr Muster" | |
| #let currency = ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module bevelcube(x,y,z,insert){ | |
| Cubepoints=[[insert,0,insert],//Fläche 1 front | |
| [insert+x,0,insert], | |
| [insert+x,0,insert+z], | |
| [insert,0,insert+z], | |
| [insert,y+insert*2,insert],//Fläche 2 hinten | |
| [insert+x,y+insert*2,insert], | |
| [insert+x,y+insert*2,insert+z], | |
| [insert,y+insert*2,insert+z],//Fläche 3 unten | |
| [insert+x,insert,0], |