This file contains 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
use <chamfer_extrude.scad> | |
// declare the height and radius of the cylinder supporting the stamp | |
cylinder_height = 20; | |
cylinder_radius = 10; | |
// move the stamp so that it is in the centre of the cylinder | |
translate([-1.3, 0.2, cylinder_height]) | |
// scale the stamp so that it fits on the cylinder | |
scale([0.2, 0.2, 0.4]) |
This file contains 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
/* | |
* myGUIControls | |
* purpose: define custom GUI controls, such as | |
* dialogBox | |
* author: Adeesha Ekanayake | |
*/ | |
using UnityEngine; | |
using System.Collections; | |
using System; |