Introduction

Getting Started

Programming Guides

API Reference

Additional Resources

HOpCreateCone.h
1 // Copyright (c) Tech Soft 3D, Inc.
2 //
3 // The information contained herein is confidential and proprietary to Tech Soft 3D, Inc.,
4 // and considered a trade secret as defined under civil and criminal statutes.
5 // Tech Soft 3D, Inc. shall pursue its civil and criminal remedies in the event of
6 // unauthorized use or misappropriation of its trade secrets. Use of this information
7 // by anyone other than authorized employees of Tech Soft 3D, Inc. is granted only under
8 // a written non-disclosure agreement, expressly prescribing the scope and manner of such use.
9 
10 // HOpCreateCone.h : interface of the HOpCreateCone class
11 // Creates a cone using left mouse down and drag
12 
13 #ifndef _HOPCREATECONE_H
14 #define _HOPCREATECONE_H
15 
16 #ifdef H_PACK_8
17 #pragma pack(push)
18 #pragma pack(8)
19 #endif
20 
21 #include "HTools.h"
22 #include "HOpConstructCone.h"
23 
25 
38 class MVO_API HOpCreateCone : public HOpConstructCone
39 {
40 public:
48  HOpCreateCone (HBaseView* view, int DoRepeat=0, int DoCapture=1);
49  virtual ~HOpCreateCone();
50 
51 
55  virtual const char * GetName();
56 
64  virtual int OnLButtonDown(HEventInfo &hevent);
65 
71  virtual HBaseOperator * Clone();
72 };
73 
74 #ifdef H_PACK_8
75 #pragma pack(pop)
76 #endif
77 
78 #endif
79 
80 
81 
82 
virtual HBaseOperator * Clone()
virtual int OnLButtonDown(HEventInfo &hevent)
virtual const char * GetName()
The HOpConstructCone class provides support for constructing a cone and inserting it into the model...
Definition: HOpConstructCone.h:38
The HBaseOperator class serves as a base for classes which handle user input and operate on the scene...
Definition: HBaseOperator.h:60
The HBaseView class defines and manages a view of model information.
Definition: HBaseView.h:332
The HEventInfo class stores and manages event information.
Definition: HEventInfo.h:207
The HOpCreateCone class provides support for constructing a cone and inserting it into the model...
Definition: HOpCreateCone.h:38