Newer
Older
'''
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": "Exact Edit",
"author": "nBurn",
"location": "View3D",
"description": "Tool for precisely setting distance, scale, and rotation",
"doc_url": "https://github.com/n-Burn/Exact_Edit/wiki",
"category": "Object"
}
if "bpy" in locals():
import importlib
importlib.reload(xedit_set_meas)
importlib.reload(xedit_free_rotate) # beta testing...
from . import xedit_free_rotate # beta testing...
class XEDIT_PT_ui_pan(bpy.types.Panel):
bl_options = {'DEFAULT_CLOSED'}
col.operator("view3d.xedit_set_meas_op", text="Set Measure", icon="EDITMODE_HLT")
col.operator("view3d.xedit_free_rotate_op", text="Free Rotate", icon="FORCE_MAGNETIC") # not working yet
xedit_set_meas.XEDIT_OT_store_meas_btn,
xedit_set_meas.XEDIT_OT_meas_inp_dlg,
xedit_set_meas.XEDIT_OT_set_meas,
xedit_free_rotate.XEDIT_OT_free_rotate, # beta testing...
for c in classes:
bpy.utils.register_class(c)
for c in reversed(classes):
bpy.utils.unregister_class(c)