[Bf-extensions-cvs] [730eb38b] blender-v2.82-release: PDT: Final Check Commit of v1.2.0 for Blender-2.82

Alan Odom noreply at git.blender.org
Sat Feb 1 16:44:50 CET 2020


Commit: 730eb38bcd3bc2377341a6d92d45657ba5d95e6f
Author: Alan Odom
Date:   Fri Jan 31 20:03:28 2020 +0000
Branches: blender-v2.82-release
https://developer.blender.org/rBA730eb38bcd3bc2377341a6d92d45657ba5d95e6f

PDT: Final Check Commit of v1.2.0 for Blender-2.82

This concludes the refactor of the functions and operations in v1.1.8.

Overall, no significant new features were added, but several inaccuracies
and corner cases were fixed during the refactor and docstring review.

===================================================================

M	precision_drawing_tools/pdt_bix.py
M	precision_drawing_tools/pdt_library.py
M	precision_drawing_tools/pdt_pivot_point.py
M	precision_drawing_tools/pdt_view.py

===================================================================

diff --git a/precision_drawing_tools/pdt_bix.py b/precision_drawing_tools/pdt_bix.py
index ec9661d9..286d3b2b 100644
--- a/precision_drawing_tools/pdt_bix.py
+++ b/precision_drawing_tools/pdt_bix.py
@@ -134,6 +134,11 @@ class PDT_OT_LineOnBisection(bpy.types.Operator):
     def execute(self, context):
         """Computes Bisector of 2 Co-Planar Edges.
 
+        Note:
+            Requires an Active Object
+            Active Object must be Mesh type
+            Active Object must be in Edit Mode.
+
         Args:
             context: Blender bpy.context instance.
 
diff --git a/precision_drawing_tools/pdt_library.py b/precision_drawing_tools/pdt_library.py
index 555b57d3..d69d5adc 100644
--- a/precision_drawing_tools/pdt_library.py
+++ b/precision_drawing_tools/pdt_library.py
@@ -73,7 +73,7 @@ class PDT_OT_Append(Operator):
         Args:
             context: Blender bpy.context instance.
 
-        Notes:
+        Note:
             Uses pg.lib_objects, pg.lib_collections & pg.lib_materials
 
         Returns:
@@ -151,7 +151,7 @@ class PDT_OT_Link(Operator):
         Args:
             context: Blender bpy.context instance.
 
-        Notes:
+        Note:
             Uses pg.lib_objects, pg.lib_collections & pg.lib_materials
 
         Returns:
diff --git a/precision_drawing_tools/pdt_pivot_point.py b/precision_drawing_tools/pdt_pivot_point.py
index 660a7a99..75cb3c16 100644
--- a/precision_drawing_tools/pdt_pivot_point.py
+++ b/precision_drawing_tools/pdt_pivot_point.py
@@ -142,7 +142,7 @@ class PDT_OT_ViewPlaneRotate(Operator):
         Args:
             context: Blender bpy.context instance.
 
-        Notes:
+        Note:
             Uses pg.pivot_loc, pg.pivot_ang scene variables
 
         Returns:
diff --git a/precision_drawing_tools/pdt_view.py b/precision_drawing_tools/pdt_view.py
index e7fb87cc..b11a3f55 100644
--- a/precision_drawing_tools/pdt_view.py
+++ b/precision_drawing_tools/pdt_view.py
@@ -48,7 +48,7 @@ class PDT_OT_ViewRot(Operator):
         Args:
             context: Blender bpy.context instance.
 
-        Notes:
+        Note:
             Uses pg.rotation_coords scene variables
 
         Returns:
@@ -82,7 +82,7 @@ class PDT_OT_ViewRotL(Operator):
         Args:
             context: Blender bpy.context instance.
 
-        Notes:
+        Note:
             Uses pg.vrotangle scene variable
 
         Returns:
@@ -111,7 +111,7 @@ class PDT_OT_ViewRotR(Operator):
         Args:
             context: Blender bpy.context instance.
 
-        Notes:
+        Note:
             Uses pg.vrotangle scene variable
 
         Returns:
@@ -140,7 +140,7 @@ class PDT_OT_ViewRotU(Operator):
         Args:
             context: Blender bpy.context instance.
 
-        Notes:
+        Note:
             Uses pg.vrotangle scene variable
 
         Returns:
@@ -169,7 +169,7 @@ class PDT_OT_ViewRotD(Operator):
         Args:
             context: Blender bpy.context instance.
 
-        Notes:
+        Note:
             Uses pg.vrotangle scene variable
 
         Returns:
@@ -198,7 +198,7 @@ class PDT_OT_ViewRoll(Operator):
         Args:
             context: Blender bpy.context instance.
 
-        Notes:
+        Note:
             Uses pg.vrotangle scene variable
 
         Returns:



More information about the Bf-extensions-cvs mailing list