Alphabetical Class Index  Class Hierarchy   File Members   Compound Members   File List  

HOpCreateCylinder.h
1 //
2 // Copyright (c) 2000 by Tech Soft 3D, LLC.
3 // The information contained herein is confidential and proprietary to
4 // Tech Soft 3D, LLC., and considered a trade secret as defined under
5 // civil and criminal statutes. Tech Soft 3D shall pursue its civil
6 // and criminal remedies in the event of unauthorized use or misappropriation
7 // of its trade secrets. Use of this information by anyone other than
8 // authorized employees of Tech Soft 3D, LLC. is granted only under a
9 // written non-disclosure agreement, expressly prescribing the scope and
10 // manner of such use.
11 //
12 // $Id: de2ee100d14966885731d4a003daaff493c7610a $
13 //
14 
15 // HOpCreateCylinder.h : interface of the HOpCreateCylinder class
16 // Creates a cylinder using left mouse down and drag
17 
18 #ifndef _HOPCREATECYLINDER_H
19 #define _HOPCREATECYLINDER_H
20 
21 #ifdef H_PACK_8
22 #pragma pack(push)
23 #pragma pack(8)
24 #endif
25 
26 #include "HTools.h"
27 #include "HOpConstructCylinder.h"
28 
30 
46 {
47 public:
55  HOpCreateCylinder (HBaseView* view, int DoRepeat=0, int DoCapture=1);
56  virtual ~HOpCreateCylinder();
57 
61  virtual const char * GetName();
62 
70  virtual int OnLButtonDown(HEventInfo &hevent);
71 
77  virtual HBaseOperator * Clone();
78 };
79 
80 #ifdef H_PACK_8
81 #pragma pack(pop)
82 #endif
83 
84 #endif
85 
86 
87 
88 
virtual HBaseOperator * Clone()
virtual const char * GetName()
The HBaseOperator class serves as a base for classes which handle user input and operate on the scene...
Definition: HBaseOperator.h:65
virtual int OnLButtonDown(HEventInfo &hevent)
The HBaseView class defines and manages a view of model information.
Definition: HBaseView.h:337
The HEventInfo class stores and manages event information.
Definition: HEventInfo.h:214
The HOpConstructCylinder class provides support for constructing a cylinder and inserting it into the...
Definition: HOpConstructCylinder.h:45
The HOpCreateCylinder class provides support for constructing a cylinder and inserting it into the mo...
Definition: HOpCreateCylinder.h:45