Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2022-02-14 06:09:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2022-02-14 06:47:00 +0300
commita5587f5223f65843e7d4c52088d782e3075a0df7 (patch)
tree64e762bc412b6dcfeab52d1a68e8a8463c0cb0ce /curve_tools
parent90fbd177c9850e21bae2238faba791815be566f0 (diff)
File headers: use SPDX license identifiers
Some files needed to be changed manually.
Diffstat (limited to 'curve_tools')
-rw-r--r--curve_tools/auto_loft.py2
-rw-r--r--curve_tools/intersections.py2
-rw-r--r--curve_tools/mathematics.py2
-rw-r--r--curve_tools/properties.py2
-rw-r--r--curve_tools/remove_doubles.py2
-rw-r--r--curve_tools/surfaces.py2
-rw-r--r--curve_tools/util.py2
7 files changed, 14 insertions, 0 deletions
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 *