This is my notepad where i collect the useful snippets of OpenSCAD code that i use over and over. Some better curated than others, some formatted for clarity some for efficiency.
Saturday, August 12, 2017
True/False Dice
Random true/false value
function dice()=round(rands(1,2,1)[0])==1?false:true;
No comments:
Post a Comment