Skip to content

Commit

Permalink
== formatting ==
Browse files Browse the repository at this point in the history
- in wiki page urls: "File_I-O/"     -> "Import-Export/"
- in categories:     "Import/Export" -> "Import-Export"
- 1 tab to 4 spaces
- some tuple formatting, just to be very picky :P
  • Loading branch information
mindrones committed Dec 23, 2010
1 parent 0c59136 commit e7f0b7f
Show file tree
Hide file tree
Showing 12 changed files with 2,218 additions and 2,215 deletions.
6 changes: 3 additions & 3 deletions io_anim_camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@
bl_addon_info = {
"name": "Export Camera Animation",
"author": "Campbell Barton",
"version": (0,1),
"version": (0, 1),
"blender": (2, 5, 3),
"api": 31847,
"location": "File > Export > Camera Animation",
"description": "Export Cameras & Markers",
"warning": "",
"wiki_url": "http:https://wiki.blender.org/index.php/Extensions:2.5/Py/"\
"Scripts/File_I-O/Camera_Animation",
"Scripts/Import-Export/Camera_Animation",
"tracker_url": "https://projects.blender.org/tracker/index.php?"\
"func=detail&aid=22835&group_id=153&atid=469",
"category": "Import/Export"}
"category": "Import-Export"}


import bpy
Expand Down
8 changes: 4 additions & 4 deletions io_coat3D/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@
bl_addon_info = {
"name": "3D-Coat Applink",
"author": "Kalle-Samuli Riihikoski (haikalle)",
"version": (1,61),
"version": (1, 61),
"blender": (2, 5, 4),
"api": 31667,
"location": "Scene -> 3D-Coat Applink",
"description": "Transfer data between 3D-Coat/Blender",
"warning": "",
"wiki_url": "http:https://wiki.blender.org/index.php/Extensions:2.5/Py/" \
"Scripts/File_I-O/3dcoat_applink",
"wiki_url": "http:https://wiki.blender.org/index.php/Extensions:2.5/Py/"\
"Scripts/Import-Export/3dcoat_applink",
"tracker_url": "https://projects.blender.org/tracker/?"\
"func=detail&aid=24446&group_id=153&atid=469",
"category": "Import/Export"}
"category": "Import-Export"}


if "bpy" in locals():
Expand Down
27 changes: 14 additions & 13 deletions io_convert_image_to_mesh_img/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,29 @@
#
# ##### END GPL LICENSE BLOCK #####

# Revision History:
# 0.1.1 - make default import 12x12 bin (fast) to not consume too much memory
# by default (TJS - 2010-12-07)
# 0.1.2 - included into svn under the tree:
# trunk/py/scripts/addons/io_convert_image_to_mesh_img
# may be moved out to contrib once the blender downloader works well
# (TJS - 2010-12-14)

bl_addon_info = {
"name": "HiRISE DTM from PDS IMG",
"author": "Tim Spriggs ([email protected])",
"version": (0,1,2),
"blender": (2,5,3),
"version": (0, 1, 2),
"blender": (2, 5, 3),
"api": 31998,
"location": "File > Import > HiRISE DTM from PDS IMG (.IMG)",
"description": "Import a HiRISE DTM formatted as a PDS IMG file",
"warning": "This is beta quality code and the final product may consume a lot of memory",
"warning": "May consume a lot of memory",
"wiki_url": "http:https://wiki.blender.org/index.php/Extensions:2.5/Py/"\
"Scripts/File_I-O/HiRISE_DTM_from_PDS_IMG",
"Scripts/Import-Export/HiRISE_DTM_from_PDS_IMG",
"tracker_url": "https://projects.blender.org/tracker/index.php?"\
"func=detail&aid=24897&group_id=153&atid=469",
"category": "Import/Export"}
"category": "Import-Export"}


# Revision History:
# 0.1.1 - make default import 12x12 bin (fast) to not consume too much memory
# by default (TJS - 2010-12-07)
# 0.1.2 - included into svn under the tree:
# trunk/py/scripts/addons/io_convert_image_to_mesh_img
# may be moved out to contrib once the blender downloader works well
# (TJS - 2010-12-14)


if "bpy" in locals():
Expand Down
6 changes: 3 additions & 3 deletions io_export_directx_x.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
bl_addon_info = {
"name": "Export DirectX Model Format (.x)",
"author": "Chris Foster (Kira Vakaan)",
"version": (2,0),
"version": (2, 0),
"blender": (2, 5, 5),
"api": 33427,
"location": "File > Export",
"description": "Export to the DirectX Model Format (.x)",
"warning": "",
"wiki_url": "http:https://wiki.blender.org/index.php/Extensions:2.5/Py/"\
"Scripts/File_I-O/DirectX_Exporter",
"Scripts/Import-Export/DirectX_Exporter",
"tracker_url": "https://projects.blender.org/tracker/index.php?"\
"func=detail&aid=22795&group_id=153&atid=469",
"category": "Import/Export"}
"category": "Import-Export"}

import os
from math import radians
Expand Down
Loading

0 comments on commit e7f0b7f

Please sign in to comment.