Last active
January 16, 2026 00:17
-
-
Save madhephaestus/c15329c19b4a33248fe9 to your computer and use it in GitHub Desktop.
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
| //create a rounded cube | |
| CSG roundedCube = new RoundedCube( 40,// X dimention | |
| 40,// Y dimention | |
| 40// Z dimention | |
| ) | |
| .cornerRadius(4)// sets the radius of the corner | |
| .toCSG()// converts it to a CSG tor display | |
| return roundedCube |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment