Alphabetical Class Index  Class Hierarchy   File Members   Compound Members   File List  

HOpCreateCuboid.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 
13 // HOpCreateCuboid.h : interface of the HOpCreateCuboid class
14 // Creates a cuboid using left mouse down and drag
15 
16 #ifndef _HOPCREATECUBOID_H
17 #define _HOPCREATECUBOID_H
18 
19 #ifdef H_PACK_8
20 #pragma pack(push)
21 #pragma pack(8)
22 #endif
23 
24 #include "HTools.h"
25 #include "HOpConstructCuboid.h"
26 
28 
41 class MVO_API HOpCreateCuboid : public HOpConstructCuboid
42 {
43 public:
51  HOpCreateCuboid (HBaseView* view, int DoRepeat=0, int DoCapture=1);
52  virtual ~HOpCreateCuboid();
53 
57  virtual const char * GetName();
58 
67  virtual int OnLButtonDown(HEventInfo &hevent);
68 
69 
75  virtual HBaseOperator * Clone();
76 };
77 
78 #ifdef H_PACK_8
79 #pragma pack(pop)
80 #endif
81 
82 #endif
83 
84 
85 
86 
The HOpConstructCuboid class creates a rectangular cube.
Definition: HOpConstructCuboid.h:44
The HOpCreateCuboid class creates a rectangular cube.
Definition: HOpCreateCuboid.h:41
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
The HEventInfo class stores and manages event information.
Definition: HEventInfo.h:214
virtual int OnLButtonDown(HEventInfo &hevent)