Changeset View
Changeset View
Standalone View
Standalone View
object_print3d_utils/ui.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' | ||||
| @staticmethod | @staticmethod | ||||
| def draw_report(layout, context): | def draw_report(layout, context): | ||||
| Context not available. | |||||