-
Notifications
You must be signed in to change notification settings - Fork 5
/
numpyscalecm.py
122 lines (104 loc) · 3.35 KB
/
numpyscalecm.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# numpyscalecm.py
#
# (c) 2017 Michel Anders
#
# 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 3 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.
import bpy, bmesh
from bpy.props import FloatProperty
from mathutils import Vector
import numpy as np
from time import time
bl_info = {
"name": "Numpy Scale",
"author": "Michel Anders (varkenvarken)",
"version": (0, 0, 201701011501),
"blender": (2, 78, 0),
"location": "View3D > Object > Numpy Scale",
"description": "Scale around center of mass",
"warning": "",
"wiki_url": "",
"tracker_url": "",
"category": "Experimental development"}
class RegularScaleOp(bpy.types.Operator):
bl_idname = 'mesh.regularscaleop'
bl_label = 'Regular Scale CM'
bl_options = {'REGISTER', 'UNDO'}
scale = FloatProperty(name='Scale', default=1)
@classmethod
def poll(self, context):
return (context.mode == 'OBJECT' and
context.active_object.type == 'MESH')
def execute(self, context):
# mesh must be in object mode
ob = context.active_object
start = time()
me = ob.data
count = len(me.vertices)
# calculate center of mass
cm = sum((v.co for v in me.vertices), Vector())
if count > 1:
cm /= count
# scale the vertex coordinates
for v in me.vertices:
v.co = cm + (v.co - cm) * self.scale
print("{count} verts scaled in {t:.2f} seconds".format(
t=time()-start, count=count))
return {"FINISHED"}
class NumpyScaleOp(bpy.types.Operator):
bl_idname = 'mesh.numpyscaleop'
bl_label = 'Numpy Scale CM'
bl_options = {'REGISTER', 'UNDO'}
scale = FloatProperty(name='Scale', default=1)
@classmethod
def poll(self, context):
return (context.mode == 'OBJECT' and
context.active_object.type == 'MESH')
def execute(self, context):
# mesh must be in object mode
ob = context.active_object
start = time()
me = ob.data
# get vertex coordinates
count = len(me.vertices)
shape = (count, 3)
verts = np.empty(count*3, dtype=np.float32)
me.vertices.foreach_get('co', verts)
verts.shape = shape
# calculate center of mass
cm = np.average(verts,axis=0)
# scale the vertex coordinates
verts = cm + (verts - cm ) * np.float32(self.scale)
# return coordinates, flatten the array first
verts.shape = count*3
me.vertices.foreach_set('co', verts)
print("{count} verts scaled in {t:.2f} seconds".format(
t=time()-start, count=count))
return {"FINISHED"}
def menu_func(self, context):
self.layout.operator(
RegularScaleOp.bl_idname,
text=RegularScaleOp.bl_label,
icon='PLUGIN')
self.layout.operator(
NumpyScaleOp.bl_idname,
text=NumpyScaleOp.bl_label,
icon='PLUGIN')
def register():
bpy.utils.register_module(__name__)
bpy.types.VIEW3D_MT_object.append(menu_func)
def unregister():
bpy.types.VIEW3D_MT_object.remove(menu_func)
bpy.utils.unregister_module(__name__)