[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [32071] trunk/blender/release/scripts/ keyingsets/keyingsets_builtins.py: whitespace commit, tabs -> spaces

Campbell Barton ideasman42 at gmail.com
Thu Sep 23 09:50:52 CEST 2010


Revision: 32071
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=32071
Author:   campbellbarton
Date:     2010-09-23 09:50:52 +0200 (Thu, 23 Sep 2010)

Log Message:
-----------
whitespace commit, tabs -> spaces

Modified Paths:
--------------
    trunk/blender/release/scripts/keyingsets/keyingsets_builtins.py

Modified: trunk/blender/release/scripts/keyingsets/keyingsets_builtins.py
===================================================================
--- trunk/blender/release/scripts/keyingsets/keyingsets_builtins.py	2010-09-23 07:31:44 UTC (rev 32070)
+++ trunk/blender/release/scripts/keyingsets/keyingsets_builtins.py	2010-09-23 07:50:52 UTC (rev 32071)
@@ -11,200 +11,200 @@
 
 # Location
 class BUILTIN_KSI_Location(bpy.types.KeyingSetInfo):
-	bl_label = "Location"
-	
-	# poll - use predefined callback for selected bones/objects
-	poll = RKS_POLL_selected_items
-	
-	# iterator - use callback for selected bones/objects
-	iterator = RKS_ITER_selected_item
-	
-	# generator - use callback for location 
-	generate = RKS_GEN_location
-	
+    bl_label = "Location"
+
+    # poll - use predefined callback for selected bones/objects
+    poll = RKS_POLL_selected_items
+
+    # iterator - use callback for selected bones/objects
+    iterator = RKS_ITER_selected_item
+
+    # generator - use callback for location 
+    generate = RKS_GEN_location
+
 # Rotation
 class BUILTIN_KSI_Rotation(bpy.types.KeyingSetInfo):
-	bl_label = "Rotation"
-	
-	# poll - use predefined callback for selected bones/objects
-	poll = RKS_POLL_selected_items
-	
-	# iterator - use callback for selected bones/objects
-	iterator = RKS_ITER_selected_item
-	
-	# generator - use callback for location 
-	generate = RKS_GEN_rotation
-	
+    bl_label = "Rotation"
+
+    # poll - use predefined callback for selected bones/objects
+    poll = RKS_POLL_selected_items
+
+    # iterator - use callback for selected bones/objects
+    iterator = RKS_ITER_selected_item
+
+    # generator - use callback for location 
+    generate = RKS_GEN_rotation
+
 # Scale
 class BUILTIN_KSI_Scaling(bpy.types.KeyingSetInfo):
-	bl_label = "Scaling"
-	
-	# poll - use predefined callback for selected bones/objects
-	poll = RKS_POLL_selected_items
-	
-	# iterator - use callback for selected bones/objects
-	iterator = RKS_ITER_selected_item
-	
-	# generator - use callback for location 
-	generate = RKS_GEN_scaling
+    bl_label = "Scaling"
 
+    # poll - use predefined callback for selected bones/objects
+    poll = RKS_POLL_selected_items
+
+    # iterator - use callback for selected bones/objects
+    iterator = RKS_ITER_selected_item
+
+    # generator - use callback for location 
+    generate = RKS_GEN_scaling
+
 # ------------
-	
+
 # LocRot
 class BUILTIN_KSI_LocRot(bpy.types.KeyingSetInfo):
-	bl_label = "LocRot"
-	
-	# poll - use predefined callback for selected bones/objects
-	poll = RKS_POLL_selected_items
-	
-	# iterator - use callback for selected bones/objects
-	iterator = RKS_ITER_selected_item
-	
-	# generator - use callback for location 
-	def generate(self, context, ks, data):
-		# location
-		RKS_GEN_location(self, context, ks, data)
-		# rotation
-		RKS_GEN_rotation(self, context, ks, data)
+    bl_label = "LocRot"
 
+    # poll - use predefined callback for selected bones/objects
+    poll = RKS_POLL_selected_items
+
+    # iterator - use callback for selected bones/objects
+    iterator = RKS_ITER_selected_item
+
+    # generator - use callback for location 
+    def generate(self, context, ks, data):
+        # location
+        RKS_GEN_location(self, context, ks, data)
+        # rotation
+        RKS_GEN_rotation(self, context, ks, data)
+
 # LocScale
 class BUILTIN_KSI_LocScale(bpy.types.KeyingSetInfo):
-	bl_label = "LocScale"
-	
-	# poll - use predefined callback for selected bones/objects
-	poll = RKS_POLL_selected_items
-	
-	# iterator - use callback for selected bones/objects
-	iterator = RKS_ITER_selected_item
-	
-	# generator - use callback for location 
-	def generate(self, context, ks, data):
-		# location
-		RKS_GEN_location(self, context, ks, data)
-		# scale
-		RKS_GEN_scaling(self, context, ks, data)
+    bl_label = "LocScale"
 
+    # poll - use predefined callback for selected bones/objects
+    poll = RKS_POLL_selected_items
+
+    # iterator - use callback for selected bones/objects
+    iterator = RKS_ITER_selected_item
+
+    # generator - use callback for location 
+    def generate(self, context, ks, data):
+        # location
+        RKS_GEN_location(self, context, ks, data)
+        # scale
+        RKS_GEN_scaling(self, context, ks, data)
+
 # LocRotScale
 class BUILTIN_KSI_LocRotScale(bpy.types.KeyingSetInfo):
-	bl_label = "LocRotScale"
-	
-	# poll - use predefined callback for selected bones/objects
-	poll = RKS_POLL_selected_items
-	
-	# iterator - use callback for selected bones/objects
-	iterator = RKS_ITER_selected_item
-	
-	# generator - use callback for location 
-	def generate(self, context, ks, data):
-		# location
-		RKS_GEN_location(self, context, ks, data)
-		# rotation
-		RKS_GEN_rotation(self, context, ks, data)
-		# scale
-		RKS_GEN_scaling(self, context, ks, data)
+    bl_label = "LocRotScale"
 
+    # poll - use predefined callback for selected bones/objects
+    poll = RKS_POLL_selected_items
+
+    # iterator - use callback for selected bones/objects
+    iterator = RKS_ITER_selected_item
+
+    # generator - use callback for location 
+    def generate(self, context, ks, data):
+        # location
+        RKS_GEN_location(self, context, ks, data)
+        # rotation
+        RKS_GEN_rotation(self, context, ks, data)
+        # scale
+        RKS_GEN_scaling(self, context, ks, data)
+
 # RotScale
 class BUILTIN_KSI_RotScale(bpy.types.KeyingSetInfo):
-	bl_label = "RotScale"
-	
-	# poll - use predefined callback for selected bones/objects
-	poll = RKS_POLL_selected_items
-	
-	# iterator - use callback for selected bones/objects
-	iterator = RKS_ITER_selected_item
-	
-	# generator - use callback for location 
-	def generate(self, context, ks, data):
-		# rotation
-		RKS_GEN_rotation(self, context, ks, data)
-		# scaling
-		RKS_GEN_scaling(self, context, ks, data)
-		
+    bl_label = "RotScale"
+
+    # poll - use predefined callback for selected bones/objects
+    poll = RKS_POLL_selected_items
+
+    # iterator - use callback for selected bones/objects
+    iterator = RKS_ITER_selected_item
+
+    # generator - use callback for location 
+    def generate(self, context, ks, data):
+        # rotation
+        RKS_GEN_rotation(self, context, ks, data)
+        # scaling
+        RKS_GEN_scaling(self, context, ks, data)
+        
 # ------------
 
 # Location
 class BUILTIN_KSI_VisualLoc(bpy.types.KeyingSetInfo):
-	bl_label = "Visual Location"
-	
-	insertkey_visual = True
-	
-	# poll - use predefined callback for selected bones/objects
-	poll = RKS_POLL_selected_items
-	
-	# iterator - use callback for selected bones/objects
-	iterator = RKS_ITER_selected_item
-	
-	# generator - use callback for location 
-	generate = RKS_GEN_location
-	
+    bl_label = "Visual Location"
+
+    insertkey_visual = True
+
+    # poll - use predefined callback for selected bones/objects
+    poll = RKS_POLL_selected_items
+
+    # iterator - use callback for selected bones/objects
+    iterator = RKS_ITER_selected_item
+
+    # generator - use callback for location 
+    generate = RKS_GEN_location
+
 # Rotation
 class BUILTIN_KSI_VisualRot(bpy.types.KeyingSetInfo):
-	bl_label = "Visual Rotation"
-	
-	insertkey_visual = True
-	
-	# poll - use predefined callback for selected bones/objects
-	poll = RKS_POLL_selected_items
-	
-	# iterator - use callback for selected bones/objects
-	iterator = RKS_ITER_selected_item
-	
-	# generator - use callback for location 
-	generate = RKS_GEN_rotation
+    bl_label = "Visual Rotation"
 
+    insertkey_visual = True
+
+    # poll - use predefined callback for selected bones/objects
+    poll = RKS_POLL_selected_items
+
+    # iterator - use callback for selected bones/objects
+    iterator = RKS_ITER_selected_item
+
+    # generator - use callback for location 
+    generate = RKS_GEN_rotation
+
 # VisualLocRot
 class BUILTIN_KSI_VisualLocRot(bpy.types.KeyingSetInfo):
-	bl_label = "Visual LocRot"
-	
-	insertkey_visual = True
-	
-	# poll - use predefined callback for selected bones/objects
-	poll = RKS_POLL_selected_items
-	
-	# iterator - use callback for selected bones/objects
-	iterator = RKS_ITER_selected_item
-	
-	# generator - use callback for location 
-	def generate(self, context, ks, data):
-		# location
-		RKS_GEN_location(self, context, ks, data)
-		# rotation
-		RKS_GEN_rotation(self, context, ks, data)
+    bl_label = "Visual LocRot"
 
+    insertkey_visual = True
+
+    # poll - use predefined callback for selected bones/objects
+    poll = RKS_POLL_selected_items
+
+    # iterator - use callback for selected bones/objects
+    iterator = RKS_ITER_selected_item
+
+    # generator - use callback for location 
+    def generate(self, context, ks, data):
+        # location
+        RKS_GEN_location(self, context, ks, data)
+        # rotation
+        RKS_GEN_rotation(self, context, ks, data)
+
 # ------------
 
 # Available
 class BUILTIN_KSI_Available(bpy.types.KeyingSetInfo):
-	bl_label = "Available"
-	
-	# poll - use predefined callback for selected objects
-	# TODO: this should really check whether the selected object (or datablock) 
-	# 		has any animation data defined yet
-	poll = RKS_POLL_selected_objects
-	
-	# iterator - use callback for selected bones/objects
-	iterator = RKS_ITER_selected_item
-	
-	# generator - use callback for location 
-	generate = RKS_GEN_available
+    bl_label = "Available"
 
+    # poll - use predefined callback for selected objects
+    # TODO: this should really check whether the selected object (or datablock) 
+    #         has any animation data defined yet
+    poll = RKS_POLL_selected_objects
+
+    # iterator - use callback for selected bones/objects
+    iterator = RKS_ITER_selected_item
+
+    # generator - use callback for location 
+    generate = RKS_GEN_available
+
 ############################### 
 
 classes = [
-	BUILTIN_KSI_Location,
-	BUILTIN_KSI_Rotation,
-	BUILTIN_KSI_Scaling,
-	
-	BUILTIN_KSI_LocRot,
-	BUILTIN_KSI_LocScale,
-	BUILTIN_KSI_LocRotScale,
-	BUILTIN_KSI_RotScale,
-	
-	BUILTIN_KSI_VisualLoc,
-	BUILTIN_KSI_VisualRot,
-	BUILTIN_KSI_VisualLocRot,
-	
-	BUILTIN_KSI_Available,
+    BUILTIN_KSI_Location,
+    BUILTIN_KSI_Rotation,
+    BUILTIN_KSI_Scaling,
+
+    BUILTIN_KSI_LocRot,
+    BUILTIN_KSI_LocScale,
+    BUILTIN_KSI_LocRotScale,
+    BUILTIN_KSI_RotScale,
+
+    BUILTIN_KSI_VisualLoc,
+    BUILTIN_KSI_VisualRot,
+    BUILTIN_KSI_VisualLocRot,
+
+    BUILTIN_KSI_Available,
 ]
 
 





More information about the Bf-blender-cvs mailing list