A sample project to get started with Castor
Updated about 3 hours ago
// My first Castor script // Create a simple box with a hole const box = cube(20, 20, 10) const hole = cylinder({ r: 5, h: 15 }) const result = box.subtract(hole) output(result)