1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-11 01:04:07 +02:00

add comment

This commit is contained in:
Justin Lin
2019-09-21 19:14:38 +08:00
parent 75284851e9
commit 275a01396a
2 changed files with 20 additions and 0 deletions

View File

@@ -1,3 +1,13 @@
/**
* cone.scad
*
* @copyright Justin Lin, 2019
* @license https://opensource.org/licenses/lgpl-3.0.html
*
* @see https://openhome.cc/eGossip/OpenSCAD/lib2-cone.html
*
**/
module cone(radius, length = 0, spacing = 0.5, angle = 50, void = false, ends = false) {
module base(r) {
rotate_extrude() {

View File

@@ -1,3 +1,13 @@
/**
* connector_peg.scad
*
* @copyright Justin Lin, 2019
* @license https://opensource.org/licenses/lgpl-3.0.html
*
* @see https://openhome.cc/eGossip/OpenSCAD/lib2-connector_peg.html
*
**/
module connector_peg(radius, height, spacing = 0.5, void = false, ends = false) {
lip_r = radius * 1.2;
r_diff = lip_r - radius;