From a5587f5223f65843e7d4c52088d782e3075a0df7 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 14 Feb 2022 14:09:43 +1100 Subject: File headers: use SPDX license identifiers Some files needed to be changed manually. --- curve_tools/auto_loft.py | 2 ++ curve_tools/intersections.py | 2 ++ curve_tools/mathematics.py | 2 ++ curve_tools/properties.py | 2 ++ curve_tools/remove_doubles.py | 2 ++ curve_tools/surfaces.py | 2 ++ curve_tools/util.py | 2 ++ 7 files changed, 14 insertions(+) (limited to 'curve_tools') diff --git a/curve_tools/auto_loft.py b/curve_tools/auto_loft.py index 17705cc9..3092e6b8 100644 --- a/curve_tools/auto_loft.py +++ b/curve_tools/auto_loft.py @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + import bpy from bpy.props import BoolProperty from bpy.types import Operator, Panel diff --git a/curve_tools/intersections.py b/curve_tools/intersections.py index f0b8e96f..113a97ed 100644 --- a/curve_tools/intersections.py +++ b/curve_tools/intersections.py @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + import bpy from . import mathematics from . import curves diff --git a/curve_tools/mathematics.py b/curve_tools/mathematics.py index 4a61af4d..555c3f65 100644 --- a/curve_tools/mathematics.py +++ b/curve_tools/mathematics.py @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + from mathutils import * diff --git a/curve_tools/properties.py b/curve_tools/properties.py index d6fe9e0f..d984f67b 100644 --- a/curve_tools/properties.py +++ b/curve_tools/properties.py @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + import time import bpy diff --git a/curve_tools/remove_doubles.py b/curve_tools/remove_doubles.py index f0b3dbb5..c63d82be 100644 --- a/curve_tools/remove_doubles.py +++ b/curve_tools/remove_doubles.py @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + import bpy, mathutils from . import util diff --git a/curve_tools/surfaces.py b/curve_tools/surfaces.py index 7fa484a7..2d89115c 100644 --- a/curve_tools/surfaces.py +++ b/curve_tools/surfaces.py @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + import bpy import bmesh diff --git a/curve_tools/util.py b/curve_tools/util.py index 110b8b83..59603186 100644 --- a/curve_tools/util.py +++ b/curve_tools/util.py @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + import bpy from mathutils import * -- cgit v1.2.3