Changeset View
Changeset View
Standalone View
Standalone View
mesh_relax.py
| Context not available. | |||||
| @classmethod | @classmethod | ||||
| def poll(cls, context): | def poll(cls, context): | ||||
| obj = context.active_object | obj = context.active_object | ||||
| return (obj and obj.type == 'MESH') | return obj and obj.type == 'MESH' | ||||
| def execute(self, context): | def execute(self, context): | ||||
| for i in range(0,self.iterations): | for i in range(0,self.iterations): | ||||
| Context not available. | |||||