Resolved the license mess
This commit is contained in:
parent
022699112a
commit
0b8c6f4c8d
2
README
2
README
|
@ -3,7 +3,7 @@ OpenSCAD MCAD Library
|
|||
|
||||
This library contains components commonly used in designing and moching up mechanical designs. It is currently unfinished and still undergoing considerable API changes however many things are already working.
|
||||
|
||||
This library currently has code licensed under the GPL 3.0 and GPL 2.0, please check the files for compatibility. This is to be remedied somehow soon.
|
||||
This library is licensed under the GPL 2.0.
|
||||
|
||||
Currently Provided Tools:
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// License: GPL 2.0
|
||||
|
||||
//Todo: placeholder; should generate standard + cusom bearing mounting holes
|
||||
module bearing_hole(outer_radius, hole=true, mochup=true)
|
||||
{
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// License: GPL 2.0
|
||||
|
||||
include <math.scad>
|
||||
|
||||
|
||||
|
@ -89,4 +91,4 @@ module _stepper_motor_mount(
|
|||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// License: GPL 2.0
|
||||
|
||||
//testNutsAndBolts();
|
||||
|
||||
module testNutsAndBolts()
|
||||
|
@ -176,4 +178,4 @@ module boltHole(size, units=MM, length, tolerance = +0.0001, proj = -1)
|
|||
square([capRadius*2, capHeight]);
|
||||
square([radius*2, length]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// Parametric screw-like things (ball screws, augers)
|
||||
// It is licensed under the GNU GPL 3.0 license.
|
||||
// License: GNU GPL 2.0 or later.
|
||||
// © 2010 by Elmo Mäntynen
|
||||
|
||||
include <curves.scad>
|
||||
|
|
Loading…
Reference in a new issue