Browse Source

updated header license

akal 9 years ago
parent
commit
83ba3e5539

+ 3 - 1
tools/anki_scene_exporter/__init__.py

@@ -1,5 +1,7 @@
+# Copyright (C) 2009-2016, Panagiotis Christopoulos Charitos and contributors.
+# All rights reserved.
 # Code licensed under the BSD License.
-# http://www.anki3d.org/LICENSE Panagiotis Christopoulos Charitos and contributors
+# http://www.anki3d.org/LICENSE
 # keep methods in alphabetical order
 
 bl_info = {

+ 3 - 1
tools/anki_scene_exporter/lib/environment.py

@@ -1,5 +1,7 @@
+# Copyright (C) 2009-2016, Panagiotis Christopoulos Charitos and contributors.
+# All rights reserved.
 # Code licensed under the BSD License.
-# http://www.anki3d.org/LICENSE Panagiotis Christopoulos Charitos and contributors
+# http://www.anki3d.org/LICENSE
 # keep methods in alphabetical order
 
 # system imports

+ 3 - 1
tools/anki_scene_exporter/lib/gui.py

@@ -1,5 +1,7 @@
+# Copyright (C) 2009-2016, Panagiotis Christopoulos Charitos and contributors.
+# All rights reserved.
 # Code licensed under the BSD License.
-# http://www.anki3d.org/LICENSE Panagiotis Christopoulos Charitos and contributors
+# http://www.anki3d.org/LICENSE
 # keep methods in alphabetical order
 
 # blender imports

+ 3 - 1
tools/anki_scene_exporter/lib/material.py

@@ -1,5 +1,7 @@
+# Copyright (C) 2009-2016, Panagiotis Christopoulos Charitos and contributors.
+# All rights reserved.
 # Code licensed under the BSD License.
-# http://www.anki3d.org/LICENSE Panagiotis Christopoulos Charitos and contributors
+# http://www.anki3d.org/LICENSE
 # keep methods in alphabetical order
 
 # blender imports

+ 5 - 0
tools/anki_scene_exporter/lib/math.py

@@ -1,3 +1,8 @@
+# Copyright (C) 2009-2016, Panagiotis Christopoulos Charitos and contributors.
+# All rights reserved.
+# Code licensed under the BSD License.
+# http://www.anki3d.org/LICENSE
+# keep methods in alphabetical order
 
 def is_power_of_two(number):
 	return ((number & (number - 1)) == 0) and number != 0

+ 3 - 1
tools/anki_scene_exporter/lib/objects.py

@@ -1,5 +1,7 @@
+# Copyright (C) 2009-2016, Panagiotis Christopoulos Charitos and contributors.
+# All rights reserved.
 # Code licensed under the BSD License.
-# http://www.anki3d.org/LICENSE Panagiotis Christopoulos Charitos and contributors
+# http://www.anki3d.org/LICENSE
 # keep methods in alphabetical order
 
 # blender imports

+ 3 - 1
tools/anki_scene_exporter/lib/preferences.py

@@ -1,5 +1,7 @@
+# Copyright (C) 2009-2016, Panagiotis Christopoulos Charitos and contributors.
+# All rights reserved.
 # Code licensed under the BSD License.
-# http://www.anki3d.org/LICENSE Panagiotis Christopoulos Charitos and contributors
+# http://www.anki3d.org/LICENSE
 # keep methods in alphabetical order
 
 bl_info = {"author": "A. A. Kalugin Jr."}

+ 4 - 2
tools/anki_scene_exporter/ops/environment.py

@@ -1,5 +1,7 @@
+# Copyright (C) 2009-2016, Panagiotis Christopoulos Charitos and contributors.
+# All rights reserved.
 # Code licensed under the BSD License.
-# http://www.anki3d.org/LICENSE Panagiotis Christopoulos Charitos and contributors
+# http://www.anki3d.org/LICENSE
 # keep methods in alphabetical order
 
 # blender imports
@@ -9,8 +11,8 @@ from bpy.types import Operator
 from bpy.props import StringProperty
 
 # local imports
-from ..lib import preferences as PREF
 from ..lib import environment as ENV
+from ..lib import preferences as PREF
 
 bl_info = {"author": "A. A. Kalugin Jr."}
 

+ 3 - 1
tools/anki_scene_exporter/ops/export.py

@@ -1,5 +1,7 @@
+# Copyright (C) 2009-2016, Panagiotis Christopoulos Charitos and contributors.
+# All rights reserved.
 # Code licensed under the BSD License.
-# http://www.anki3d.org/LICENSE Panagiotis Christopoulos Charitos and contributors
+# http://www.anki3d.org/LICENSE
 # keep methods in alphabetical order
 
 # system imports

+ 3 - 1
tools/anki_scene_exporter/props/export_props.py

@@ -1,5 +1,7 @@
+# Copyright (C) 2009-2016, Panagiotis Christopoulos Charitos and contributors.
+# All rights reserved.
 # Code licensed under the BSD License.
-# http://www.anki3d.org/LICENSE Panagiotis Christopoulos Charitos and contributors
+# http://www.anki3d.org/LICENSE
 # keep methods in alphabetical order
 
 # blender imports

+ 3 - 4
tools/anki_scene_exporter/ui/gui.py

@@ -1,10 +1,9 @@
+# Copyright (C) 2009-2016, Panagiotis Christopoulos Charitos and contributors.
+# All rights reserved.
 # Code licensed under the BSD License.
-# http://www.anki3d.org/LICENSE Panagiotis Christopoulos Charitos and contributors
+# http://www.anki3d.org/LICENSE
 # keep methods in alphabetical order
 
-"""
-Gui Classes
-"""
 # system imports
 import os