Alphabetical Class Index  Class Hierarchy   File Members   Compound Members   File List  

HOpCreateSphere.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: 65e61d74a81633944bb61bc8b70749897b99fba2 $
13 //
14 
15 // HOpCreateSphere.h : interface of the HOpCreateSphere class
16 // Creates a sphere using left mouse down and drag
17 
18 #ifndef _HOPCREATESPHERE_H
19 #define _HOPCREATESPHERE_H
20 
21 #ifdef H_PACK_8
22 #pragma pack(push)
23 #pragma pack(8)
24 #endif
25 
26 #include "HTools.h"
27 #include "HOpConstructSphere.h"
28 
29 
31 
41 class MVO_API HOpCreateSphere : public HOpConstructSphere
42 {
43 
44 public:
52  HOpCreateSphere (HBaseView* view, int DoRepeat=0, int DoCapture=1);
53  virtual ~HOpCreateSphere ();
54 
58  virtual const char * GetName();
59 
66  virtual int OnLButtonUp(HEventInfo &hevent);
67 
73  virtual HBaseOperator * Clone();
74 };
75 
76 #ifdef H_PACK_8
77 #pragma pack(pop)
78 #endif
79 
80 #endif
81 
82 
83 
84 
The HOpConstructSphere class provides support for constructing a sphere and inserting it into the mod...
Definition: HOpConstructSphere.h:42
The HOpCreateSphere class provides support for constructing a sphere and inserting it into the model...
Definition: HOpCreateSphere.h:41
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
The HBaseView class defines and manages a view of model information.
Definition: HBaseView.h:337
virtual int OnLButtonUp(HEventInfo &hevent)
The HEventInfo class stores and manages event information.
Definition: HEventInfo.h:214