Maya control curve UI
UPDATED: now works with Maya 2018
simple user interface that allows for a quick creation and manipulation of nurbs curves.
create your own library:
* text controls will be combines
* combine 1 degree curves with 3 degree curve
* quickly override the objects color
* save the created curves as a python script to use elsewhere
* use the library to quickly generate a new curve
#--------------------------------------------------------------------------------#
# only for maya 2011+
#
#
# curveRecreator.py
# version 2.1, last modified 04/08/2016
# Copyright (C) 2015 Perry Leijten
# Email: perryleijten@gmail.com
# Website: www.perryleijten.com
#
# 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.
#
# See http://www.gnu.org/licenses/gpl.html for a copy of the GNU General
# Public License.
#--------------------------------------------------------------------------------#
# I N S T A L L A T I O N:
#
# Copy the "curveRecreator.py" together with "ControlCurveCreater.ui", Icon folder and curves folder to your Maya scriptsdirectory:
# MyDocuments\Maya\scripts\
# use this text as a python script within Maya:
'''
import curveRecreator
curveRecreator.StartUI()
'''
# this text can be entered from the script editor and can be made into a button
#
# note: PyQt and sip or pyside(2) libraries are necessary to run this file