Clarified the licenses in use in this library, has GPL2 and GPL3 which are incompatible

This commit is contained in:
Elmom 2010-07-25 19:39:52 +03:00
parent efe5670cb1
commit 022699112a
4 changed files with 10 additions and 1 deletions

2
README
View File

@ -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 is licensed under the GPL 3.0.
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.
Currently Provided Tools:

View File

@ -1,3 +1,6 @@
// MIT license
TAU = 6.2831853071; //2*PI, see http://tauday.com/
PI = TAU/2;

View File

@ -1,3 +1,7 @@
// Parametric curves, to be used as paths
// Licensed under the MIT license.
// © 2010 by Elmo Mäntynen
include <constants.scad>
use <math.scad>

View File

@ -1,3 +1,5 @@
// MIT license
include <constants.scad>
function deg(angle) = 360*angle/TAU;