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
ExifTool Version Number : 12.30 | |
File Name : IMG_1712.jpeg | |
Directory : photos | |
File Size : 1472 KiB | |
File Modification Date/Time : 2022:10:30 11:15:44-05:00 | |
File Access Date/Time : 2022:10:30 11:18:53-05:00 | |
File Inode Change Date/Time : 2022:10:30 11:18:06-05:00 | |
File Permissions : -rw-r--r-- | |
File Type : JPEG | |
File Type Extension : jpg |
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
/// | |
/// OpenSCAD utils | |
/// by Pat Niemeyer ([email protected]) | |
/// | |
// Rounded cube fitting exactly inside a cube of the same dimensions. | |
// | |
// Demo roundedCube | |
//%cube(size=[s,s,h], center=true); |
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
/** | |
* new Time() creates a running timer | |
* reporting on a running timer is fine | |
* each run() resets the start time and each stop() after run() accumulates time | |
* | |
* e.g. | |
* time = new Time() | |
* ... | |
* time.ms(); | |
* |