//- // ========================================================================== // Copyright (C) 1995 - 2006 Autodesk, Inc. and/or its licensors. All // rights reserved. // // The coded instructions, statements, computer programs, and/or related // material (collectively the "Data") in these files contain unpublished // information proprietary to Autodesk, Inc. ("Autodesk") and/or its // licensors, which is protected by U.S. and Canadian federal copyright // law and by international treaties. // // The Data is provided for use exclusively by You. You have the right // to use, modify, and incorporate this Data into other products for // purposes authorized by the Autodesk software license agreement, // without fee. // // The copyright notices in the Software and this entire statement, // including the above license grant, this restriction and the // following disclaimer, must be included in all copies of the // Software, in whole or in part, and all derivative works of // the Software, unless such copies or derivative works are solely // in the form of machine-executable object code generated by a // source language processor. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND. // AUTODESK DOES NOT MAKE AND HEREBY DISCLAIMS ANY EXPRESS OR IMPLIED // WARRANTIES INCLUDING, BUT NOT LIMITED TO, THE WARRANTIES OF // NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR // PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE, OR // TRADE PRACTICE. IN NO EVENT WILL AUTODESK AND/OR ITS LICENSORS // BE LIABLE FOR ANY LOST REVENUES, DATA, OR PROFITS, OR SPECIAL, // DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES, EVEN IF AUTODESK // AND/OR ITS LICENSORS HAS BEEN ADVISED OF THE POSSIBILITY // OR PROBABILITY OF SUCH DAMAGES. // // ========================================================================== //+ // // File: yTwist.cpp // // Description: // Example implementation of a deformer. This node // twists the deformed vertices around the y-axis. // #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define McheckErr(stat,msg) \ if ( MS::kSuccess != stat ) { \ cerr << msg; \ return MS::kFailure; \ } class yTwist : public MPxDeformerNode { public: yTwist(); virtual ~yTwist(); static void* creator(); static MStatus initialize(); // deformation function // virtual MStatus deform(MDataBlock& block, MItGeometry& iter, const MMatrix& mat, unsigned int multiIndex); public: // yTwist attributes // static MObject angle; // angle to twist static MTypeId id; private: }; MTypeId yTwist::id( 0x8000e ); //////////////////////// // yTwist attributes // //////////////////////// MObject yTwist::angle; yTwist::yTwist() // // Description: // constructor // { } yTwist::~yTwist() // // Description: // destructor // {} void* yTwist::creator() // // Description: // create the yTwist // { return new yTwist(); } MStatus yTwist::initialize() // // Description: // initialize the attributes // { // local attribute initialization // MFnNumericAttribute nAttr; angle=nAttr.create( "angle", "fa", MFnNumericData::kDouble ); nAttr.setDefault(0.0); nAttr.setKeyable(true); addAttribute( angle); // affects // attributeAffects( yTwist::angle, yTwist::outputGeom ); return MS::kSuccess; } MStatus yTwist::deform( MDataBlock& block, MItGeometry& iter, const MMatrix& /*m*/, unsigned int /*multiIndex*/) // // Method: deform // // Description: Deform the point with a yTwist algorithm // // Arguments: // block : the datablock of the node // iter : an iterator for the geometry to be deformed // m : matrix to transform the point into world space // multiIndex : the index of the geometry that we are deforming // // { MStatus status = MS::kSuccess; // determine the angle of the yTwist // MDataHandle angleData = block.inputValue(angle,&status); McheckErr(status, "Error getting angle data handle\n"); double magnitude = angleData.asDouble(); // determine the envelope (this is a global scale factor) // MDataHandle envData = block.inputValue(envelope,&status); McheckErr(status, "Error getting envelope data handle\n"); float env = envData.asFloat(); // iterate through each point in the geometry // for ( ; !iter.isDone(); iter.next()) { MPoint pt = iter.position(); // do the twist // double ff = magnitude*pt.y*env; if (ff != 0.0) { double cct= cos(ff); double cst= sin(ff); double tt= pt.x*cct-pt.z*cst; pt.z= pt.x*cst + pt.z*cct; pt.x=tt;; } iter.setPosition(pt); } return status; } // standard initialization procedures // MStatus initializePlugin( MObject obj ) { MStatus result; MFnPlugin plugin( obj, PLUGIN_COMPANY, "3.0", "Any"); result = plugin.registerNode( "yTwist", yTwist::id, yTwist::creator, yTwist::initialize, MPxNode::kDeformerNode ); return result; } MStatus uninitializePlugin( MObject obj) { MStatus result; MFnPlugin plugin( obj ); result = plugin.deregisterNode( yTwist::id ); return result; }