00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * Ondrej Kos 00008 * Side Effects Software Inc 00009 * 477 Richmond Street West 00010 * Toronto, Ontario 00011 * Canada M5V 3E7 00012 * 416-504-9876 00013 * 00014 * NAME: MSS_CurveClaySelector.h ( Direct Manipulation Library, C++) 00015 * 00016 * COMMENTS: 00017 * Custom selector for the CurveClay SOP. 00018 */ 00019 00020 #ifndef __MSS_CurveClaySelector_h__ 00021 #define __MSS_CurveClaySelector_h__ 00022 00023 #include "MSS_API.h" 00024 #include <OP3D/OP3D_GenericSelector.h> 00025 00026 class MSS_API MSS_CurveClaySelector : public OP3D_GenericSelector 00027 { 00028 public: 00029 MSS_CurveClaySelector(OP3D_View &viewer, 00030 PI_SelectorTemplate &templ); 00031 virtual ~MSS_CurveClaySelector(); 00032 00033 static BM_InputSelector *ourConstructor(BM_View &Viewer, 00034 PI_SelectorTemplate &templ); 00035 00036 virtual const char *className() const; 00037 00038 virtual void generateAdditionalInputNodes(SOP_Node &new_node, 00039 SOP_Node *input_node, 00040 const UT_String &sel_geometry_token, 00041 const UT_String &creator_state_name); 00042 private: 00043 SELECTOR_SETUP() 00044 }; 00045 00046 #endif
1.5.9