From cba34986298b89df2c56c90a04fdeb0155258187 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 27 Jun 2014 15:38:58 +0600 Subject: Update Carve to latest upstream version This brings new copyright header which supports GPL2 and 3. It wasn't really an issue before because we had agreement with Tobias, but now it's all documented in sources. --- extern/carve/lib/aabb.cpp | 10 +++++----- extern/carve/lib/carve.cpp | 10 +++++----- extern/carve/lib/convex_hull.cpp | 10 +++++----- extern/carve/lib/csg.cpp | 10 +++++----- extern/carve/lib/csg_collector.cpp | 10 +++++----- extern/carve/lib/csg_collector.hpp | 10 +++++----- extern/carve/lib/csg_data.hpp | 10 +++++----- extern/carve/lib/csg_detail.hpp | 10 +++++----- extern/carve/lib/edge.cpp | 10 +++++----- extern/carve/lib/face.cpp | 10 +++++----- extern/carve/lib/geom2d.cpp | 10 +++++----- extern/carve/lib/geom3d.cpp | 10 +++++----- extern/carve/lib/intersect.cpp | 10 +++++----- extern/carve/lib/intersect_classify_common.hpp | 10 +++++----- extern/carve/lib/intersect_classify_common_impl.hpp | 10 +++++----- extern/carve/lib/intersect_classify_edge.cpp | 10 +++++----- extern/carve/lib/intersect_classify_group.cpp | 10 +++++----- extern/carve/lib/intersect_common.hpp | 10 +++++----- extern/carve/lib/intersect_debug.cpp | 10 +++++----- extern/carve/lib/intersect_debug.hpp | 10 +++++----- extern/carve/lib/intersect_face_division.cpp | 10 +++++----- extern/carve/lib/intersect_group.cpp | 10 +++++----- extern/carve/lib/intersect_half_classify_group.cpp | 10 +++++----- extern/carve/lib/intersection.cpp | 10 +++++----- extern/carve/lib/math.cpp | 10 +++++----- extern/carve/lib/mesh.cpp | 10 +++++----- extern/carve/lib/octree.cpp | 10 +++++----- extern/carve/lib/pointset.cpp | 10 +++++----- extern/carve/lib/polyhedron.cpp | 10 +++++----- extern/carve/lib/polyline.cpp | 10 +++++----- extern/carve/lib/tag.cpp | 10 +++++----- extern/carve/lib/timing.cpp | 10 +++++----- extern/carve/lib/triangulator.cpp | 10 +++++----- 33 files changed, 165 insertions(+), 165 deletions(-) (limited to 'extern/carve/lib') diff --git a/extern/carve/lib/aabb.cpp b/extern/carve/lib/aabb.cpp index 188929a8cfa..41d4e0e32e0 100644 --- a/extern/carve/lib/aabb.cpp +++ b/extern/carve/lib/aabb.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/carve.cpp b/extern/carve/lib/carve.cpp index 9af2d0408fb..becaa1d9f90 100644 --- a/extern/carve/lib/carve.cpp +++ b/extern/carve/lib/carve.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/convex_hull.cpp b/extern/carve/lib/convex_hull.cpp index 616d8cbe561..e923746f532 100644 --- a/extern/carve/lib/convex_hull.cpp +++ b/extern/carve/lib/convex_hull.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/csg.cpp b/extern/carve/lib/csg.cpp index 3d3dfb8bf75..7e790def024 100644 --- a/extern/carve/lib/csg.cpp +++ b/extern/carve/lib/csg.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/csg_collector.cpp b/extern/carve/lib/csg_collector.cpp index c38b3e520fc..3986a918a5e 100644 --- a/extern/carve/lib/csg_collector.cpp +++ b/extern/carve/lib/csg_collector.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/csg_collector.hpp b/extern/carve/lib/csg_collector.hpp index c68d3f3aa42..452f19a06a8 100644 --- a/extern/carve/lib/csg_collector.hpp +++ b/extern/carve/lib/csg_collector.hpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/csg_data.hpp b/extern/carve/lib/csg_data.hpp index e4a20825e79..c0c18d3122b 100644 --- a/extern/carve/lib/csg_data.hpp +++ b/extern/carve/lib/csg_data.hpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/csg_detail.hpp b/extern/carve/lib/csg_detail.hpp index e5947e776b5..a985a5c6ada 100644 --- a/extern/carve/lib/csg_detail.hpp +++ b/extern/carve/lib/csg_detail.hpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/edge.cpp b/extern/carve/lib/edge.cpp index 4414e6496f3..68f01b5599b 100644 --- a/extern/carve/lib/edge.cpp +++ b/extern/carve/lib/edge.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/face.cpp b/extern/carve/lib/face.cpp index 2988ff4a08c..cb56478626f 100644 --- a/extern/carve/lib/face.cpp +++ b/extern/carve/lib/face.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/geom2d.cpp b/extern/carve/lib/geom2d.cpp index 5787da19c66..3b608238bb2 100644 --- a/extern/carve/lib/geom2d.cpp +++ b/extern/carve/lib/geom2d.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/geom3d.cpp b/extern/carve/lib/geom3d.cpp index 061dfe91802..e67ace51c8b 100644 --- a/extern/carve/lib/geom3d.cpp +++ b/extern/carve/lib/geom3d.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/intersect.cpp b/extern/carve/lib/intersect.cpp index 3bfbb40e402..e8e5d329c34 100644 --- a/extern/carve/lib/intersect.cpp +++ b/extern/carve/lib/intersect.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/intersect_classify_common.hpp b/extern/carve/lib/intersect_classify_common.hpp index 359c9af0e64..ab59f27b029 100644 --- a/extern/carve/lib/intersect_classify_common.hpp +++ b/extern/carve/lib/intersect_classify_common.hpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/intersect_classify_common_impl.hpp b/extern/carve/lib/intersect_classify_common_impl.hpp index 3c141c81151..409b9476a88 100644 --- a/extern/carve/lib/intersect_classify_common_impl.hpp +++ b/extern/carve/lib/intersect_classify_common_impl.hpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/intersect_classify_edge.cpp b/extern/carve/lib/intersect_classify_edge.cpp index d2c1fdd7c24..4f7111a83bd 100644 --- a/extern/carve/lib/intersect_classify_edge.cpp +++ b/extern/carve/lib/intersect_classify_edge.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/intersect_classify_group.cpp b/extern/carve/lib/intersect_classify_group.cpp index 4251af63f89..b1b19a2eb15 100644 --- a/extern/carve/lib/intersect_classify_group.cpp +++ b/extern/carve/lib/intersect_classify_group.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/intersect_common.hpp b/extern/carve/lib/intersect_common.hpp index 06f3cfdd4ec..3dea5932818 100644 --- a/extern/carve/lib/intersect_common.hpp +++ b/extern/carve/lib/intersect_common.hpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/intersect_debug.cpp b/extern/carve/lib/intersect_debug.cpp index c16854d5655..50201d3cfb5 100644 --- a/extern/carve/lib/intersect_debug.cpp +++ b/extern/carve/lib/intersect_debug.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/intersect_debug.hpp b/extern/carve/lib/intersect_debug.hpp index be73a7c3dae..d68f49ce2c1 100644 --- a/extern/carve/lib/intersect_debug.hpp +++ b/extern/carve/lib/intersect_debug.hpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/intersect_face_division.cpp b/extern/carve/lib/intersect_face_division.cpp index 0016724e16c..04c8bc5a79f 100644 --- a/extern/carve/lib/intersect_face_division.cpp +++ b/extern/carve/lib/intersect_face_division.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/intersect_group.cpp b/extern/carve/lib/intersect_group.cpp index a1528569c01..ec28791150a 100644 --- a/extern/carve/lib/intersect_group.cpp +++ b/extern/carve/lib/intersect_group.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/intersect_half_classify_group.cpp b/extern/carve/lib/intersect_half_classify_group.cpp index 97915c784a0..74c37c30bfe 100644 --- a/extern/carve/lib/intersect_half_classify_group.cpp +++ b/extern/carve/lib/intersect_half_classify_group.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/intersection.cpp b/extern/carve/lib/intersection.cpp index 2aa97131f7f..fe694e32d14 100644 --- a/extern/carve/lib/intersection.cpp +++ b/extern/carve/lib/intersection.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/math.cpp b/extern/carve/lib/math.cpp index d90c83aea8b..9f8d45de9ba 100644 --- a/extern/carve/lib/math.cpp +++ b/extern/carve/lib/math.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/mesh.cpp b/extern/carve/lib/mesh.cpp index ae91b385d44..34b04b9ac66 100644 --- a/extern/carve/lib/mesh.cpp +++ b/extern/carve/lib/mesh.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/octree.cpp b/extern/carve/lib/octree.cpp index 900a9614f47..b866b0ce2be 100644 --- a/extern/carve/lib/octree.cpp +++ b/extern/carve/lib/octree.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/pointset.cpp b/extern/carve/lib/pointset.cpp index 7ecf0074c69..77ba922c04a 100644 --- a/extern/carve/lib/pointset.cpp +++ b/extern/carve/lib/pointset.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/polyhedron.cpp b/extern/carve/lib/polyhedron.cpp index 43d08b81bfd..7f65da8c125 100644 --- a/extern/carve/lib/polyhedron.cpp +++ b/extern/carve/lib/polyhedron.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/polyline.cpp b/extern/carve/lib/polyline.cpp index d9681c76a5c..999d3f506c2 100644 --- a/extern/carve/lib/polyline.cpp +++ b/extern/carve/lib/polyline.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/tag.cpp b/extern/carve/lib/tag.cpp index 449eb555346..a7a9ab3c80d 100644 --- a/extern/carve/lib/tag.cpp +++ b/extern/carve/lib/tag.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/timing.cpp b/extern/carve/lib/timing.cpp index a98796cd8a7..510dc48f6ad 100644 --- a/extern/carve/lib/timing.cpp +++ b/extern/carve/lib/timing.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR diff --git a/extern/carve/lib/triangulator.cpp b/extern/carve/lib/triangulator.cpp index eb36e86af5d..a48a9ccfa45 100644 --- a/extern/carve/lib/triangulator.cpp +++ b/extern/carve/lib/triangulator.cpp @@ -1,13 +1,13 @@ // Begin License: -// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com). +// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com). // All rights reserved. // // This file is part of the Carve CSG Library (http://carve-csg.com/) // -// This file may be used under the terms of the GNU General Public -// License version 2.0 as published by the Free Software Foundation -// and appearing in the file LICENSE.GPL2 included in the packaging of -// this file. +// This file may be used under the terms of either the GNU General +// Public License version 2 or 3 (at your option) as published by the +// Free Software Foundation and appearing in the files LICENSE.GPL2 +// and LICENSE.GPL3 included in the packaging of this file. // // This file is provided "AS IS" with NO WARRANTY OF ANY KIND, // INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR -- cgit v1.2.3