// =========================================================================== // 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: 4 April 1997 // // Description: // // // Procedure Name: // performPolyProjection // // Description: // adds a planar, cylindric or spheric projection to the selected polygon facets // // Input Arguments: // $option : Whether to set the options to default values. // Return Value: // command string iff $option==2 // global proc string performPolyProjection (string $primitive, int $option) { string $args[4]; $args[0] = $option; $args[1] = $primitive; $args[2] = "ls -sl"; $args[3] = 0; return (performPolyProjectionArgList ("1", $args, "")); }