// =========================================================================== // 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. // =========================================================================== // // Description: // This script initializes the bit values for selection masks. // // Return Value: // None. //global proc selectionMaskBitDefines() { // Geometry Shapes global int $gSelectNurbsCurvesBit = 9; global int $gSelectNurbsSurfacesBit = 10; global int $gSelectCurvesOnSurfacesBit = 11; global int $gSelectMeshesBit = 12; // Components (aka Parts) global int $gSelectCVsBit = 28; global int $gSelectHullsBit = 29; global int $gSelectEditPointsBit = 30; // Curve and Surface Parts global int $gSelectCurveParmPointsBit = 39; global int $gSelectCurveKnotsBit = 40; global int $gSelectSurfaceParmPointsBit = 41; global int $gSelectSurfaceKnotsBit = 42; global int $gSelectSurfaceRangeBit = 43; global int $gSelectSurfaceEdgeBit = 44; global int $gSelectIsoparmsBit = 45; global int $gSelectNurbsFaces = 72; // Mesh parts: global int $gSelectMeshVerts = 31; global int $gSelectMeshEdge = 32; global int $gSelectMeshFaces = 34; global int $gSelectMeshUVs = 35; global int $gSelectMeshVtxFaces = 70; // locators global int $gSelectXYZLocators = 22; global int $gSelectOrientationLocators = 23; global int $gSelectUVLocators = 24; global int $gSelectDimensions = 25; global int $gSelectLatticePoints = 46; global int $gSelectParticles = 47; // Pivots & handles global int $gSelectJointPivots = 48; global int $gSelectScalePivots = 49; global int $gSelectRotatePivots = 50; global int $gSelectSelectHandles = 51; // Subdivs: global int $gSelectSubdivSurface = 68; global int $gSelectSubdivMeshPoints = 36; global int $gSelectSubdivMeshEdges = 37; global int $gSelectSubdivMeshFaces = 38; }