[Bf-extensions-cvs] [e759efa] master: initial commit Carver_v1_14e.py by Pixivore (Addons Contrib)

meta-androcto noreply at git.blender.org
Tue Jun 7 12:27:51 CEST 2016


Commit: e759efae6ff9b4c664d064650be96c87c72f28b4
Author: meta-androcto
Date:   Tue Jun 7 20:27:24 2016 +1000
Branches: master
https://developer.blender.org/rBACe759efae6ff9b4c664d064650be96c87c72f28b4

initial commit Carver_v1_14e.py by Pixivore (Addons Contrib)

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

A	Carver_v1_14e.py

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

diff --git a/Carver_v1_14e.py b/Carver_v1_14e.py
new file mode 100644
index 0000000..0a9f192
--- /dev/null
+++ b/Carver_v1_14e.py
@@ -0,0 +1,2703 @@
+# ##### BEGIN GPL LICENSE BLOCK #####
+#
+#  This program is free software; you can redistribute it and/or
+#  modify it under the terms of the GNU General Public License
+#  as published by the Free Software Foundation; either version 2
+#  of the License, or (at your option) any later version.
+#
+#  This program is distributed in the hope that it will be useful,
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#  GNU General Public License for more details.
+#
+#  You should have received a copy of the GNU General Public License
+#  along with this program; if not, write to the Free Software Foundation,
+#  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+# ##### END GPL LICENSE BLOCK #####
+
+
+#########################################################################################################
+bl_info = {
+    "name": "Carver MT",
+    "category": "Object",
+    "author": "Pixivore, Cédric LEPILLER",
+    "version": (1,0,2),
+    "blender": (2, 77, 0),
+    "description": "Multiple tools to carve or to create objects.",
+}
+#########################################################################################################
+
+#########################################################################################################
+import bpy
+import bgl
+import blf
+import math
+import mathutils
+import sys
+import random
+import bmesh
+import bpy_extras
+from bpy_extras import view3d_utils
+from bpy_extras.view3d_utils import region_2d_to_vector_3d, region_2d_to_location_3d
+#########################################################################################################
+
+
+Profils = [("CTP_4882", mathutils.Vector((2.61824, -5.56469, 0.0)), [(-1.156501, 0.799282, 0.032334), (-0.967583, 0.838861, 0.032334), (-1.10386, 0.846403, 0.032334), (-1.034712, 0.86089, 0.032334), (-1.88472, -0.564419, 0.032334), (-1.924299, -0.375502, 0.032334), (-1.93184, -0.511778, 0.032334), (-1.946327, -0.44263, 0.032334), (-0.219065, -0.869195, 0.032334), (-0.149916, -0.854708, 0.032334), (-0.286193, -0.847167, 0.032334), (-0.097275, -0.807588, 0.032334), (0.692551, 0.434324, 0.0 [...]

@@ Diff output truncated at 10240 characters. @@



More information about the Bf-extensions-cvs mailing list