summaryrefslogtreecommitdiff
path: root/lib/elements
diff options
context:
space:
mode:
authorLex Neva <lexelby@users.noreply.github.com>2021-03-28 18:11:15 -0400
committerGitHub <noreply@github.com>2021-03-28 18:11:15 -0400
commitf787121080255abfb2f4ffc94d7d572a09e3ba61 (patch)
tree3bebe0e190250c4b74d8ca3901f66d78a8907467 /lib/elements
parent399a2a8cc8c29ece566fdc6b0ddb4ec1a5d6a9b9 (diff)
parent90a59769dd8d4de7b66c3e943e5271329980dab1 (diff)
Merge pull request #1083 from inkstitch/lexelby/license-headers
add license headers
Diffstat (limited to 'lib/elements')
-rw-r--r--lib/elements/__init__.py5
-rw-r--r--lib/elements/auto_fill.py5
-rw-r--r--lib/elements/clone.py5
-rw-r--r--lib/elements/element.py5
-rw-r--r--lib/elements/empty_d_object.py5
-rw-r--r--lib/elements/fill.py5
-rw-r--r--lib/elements/image.py5
-rw-r--r--lib/elements/polyline.py5
-rw-r--r--lib/elements/satin_column.py5
-rw-r--r--lib/elements/stroke.py5
-rw-r--r--lib/elements/text.py5
-rw-r--r--lib/elements/utils.py5
-rw-r--r--lib/elements/validation.py5
13 files changed, 65 insertions, 0 deletions
diff --git a/lib/elements/__init__.py b/lib/elements/__init__.py
index d53b2314..2e4c31a7 100644
--- a/lib/elements/__init__.py
+++ b/lib/elements/__init__.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
from .auto_fill import AutoFill
from .clone import Clone
from .element import EmbroideryElement
diff --git a/lib/elements/auto_fill.py b/lib/elements/auto_fill.py
index 31da7e63..69533f62 100644
--- a/lib/elements/auto_fill.py
+++ b/lib/elements/auto_fill.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import math
import sys
import traceback
diff --git a/lib/elements/clone.py b/lib/elements/clone.py
index fd770bd7..6dafa63d 100644
--- a/lib/elements/clone.py
+++ b/lib/elements/clone.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
from math import atan, degrees
import inkex
diff --git a/lib/elements/element.py b/lib/elements/element.py
index 3468673a..9b894d89 100644
--- a/lib/elements/element.py
+++ b/lib/elements/element.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import sys
from copy import deepcopy
diff --git a/lib/elements/empty_d_object.py b/lib/elements/empty_d_object.py
index 69a128ad..dbb43bc4 100644
--- a/lib/elements/empty_d_object.py
+++ b/lib/elements/empty_d_object.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
from ..i18n import _
from .element import EmbroideryElement
from .validation import ObjectTypeWarning
diff --git a/lib/elements/fill.py b/lib/elements/fill.py
index 1f4c7b1e..b6799165 100644
--- a/lib/elements/fill.py
+++ b/lib/elements/fill.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import logging
import math
import re
diff --git a/lib/elements/image.py b/lib/elements/image.py
index 160898a5..0828b5ef 100644
--- a/lib/elements/image.py
+++ b/lib/elements/image.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
from ..i18n import _
from ..svg.path import get_node_transform
from .element import EmbroideryElement
diff --git a/lib/elements/polyline.py b/lib/elements/polyline.py
index da1e807d..5ea00508 100644
--- a/lib/elements/polyline.py
+++ b/lib/elements/polyline.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
from inkex import Path
from shapely import geometry as shgeo
diff --git a/lib/elements/satin_column.py b/lib/elements/satin_column.py
index fbadd92f..72b7ed0f 100644
--- a/lib/elements/satin_column.py
+++ b/lib/elements/satin_column.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
from copy import deepcopy
from itertools import chain
diff --git a/lib/elements/stroke.py b/lib/elements/stroke.py
index d63a21a9..e3cd4390 100644
--- a/lib/elements/stroke.py
+++ b/lib/elements/stroke.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
import sys
import shapely.geometry
diff --git a/lib/elements/text.py b/lib/elements/text.py
index 838be96a..dbf76c85 100644
--- a/lib/elements/text.py
+++ b/lib/elements/text.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
from ..i18n import _
from .element import EmbroideryElement
from .validation import ObjectTypeWarning
diff --git a/lib/elements/utils.py b/lib/elements/utils.py
index 378cec0c..aceab485 100644
--- a/lib/elements/utils.py
+++ b/lib/elements/utils.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
from ..commands import is_command
from ..svg.tags import (EMBROIDERABLE_TAGS, SVG_IMAGE_TAG, SVG_PATH_TAG,
SVG_POLYLINE_TAG, SVG_TEXT_TAG)
diff --git a/lib/elements/validation.py b/lib/elements/validation.py
index f77e2fc4..c14b634c 100644
--- a/lib/elements/validation.py
+++ b/lib/elements/validation.py
@@ -1,3 +1,8 @@
+# Authors: see git history
+#
+# Copyright (c) 2010 Authors
+# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
+
from shapely.geometry import Point as ShapelyPoint
from ..utils import Point as InkstitchPoint