// =========================================================================== // Copyright 2018 Autodesk, Inc. All rights reserved. // // Use of this software is subject to the terms of the Autodesk license // agreement provided at the time of installation or download, or which // otherwise accompanies this software in either electronic or hard copy form. // =========================================================================== // // // Creation Date: Oct. 31/97 // // Description: // doCutKey is the actual proc that is executed from the // Edit->Keys->Cut Keys option box or menu // // Input Arguments: // // Return Value: // The number of curves from which keys were cut. // global proc int doCutKey( int $whichRange, string $timeRange, string $option, string $hierarchy, int $doControlPoints, int $doShapes, int $useChannelBox, string $selectionConnection ) { string $args[] = {(string) $whichRange, $timeRange, $option, $hierarchy, $doControlPoints, $doShapes, $useChannelBox, $selectionConnection }; return doCutKeyArgList( "1", $args ); }