Introduction

Getting Started

Programming Guides

API Reference

Additional Resources

HOpCreateCircle.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 #ifndef _HOPCreateCIRCLE_H
11 #define _HOPCreateCIRCLE_H
12 
13 #ifdef H_PACK_8
14 #pragma pack(push)
15 #pragma pack(8)
16 #endif
17 
18 #include "HTools.h"
19 #include "HOpConstructCircle.h"
20 
22 
33 class MVO_API HOpCreateCircle : public HOpConstructCircle
34 {
35 public:
45  HOpCreateCircle(HBaseView* view, int DoRepeat=0, int DoCapture=1, bool UseCenterMarker=true);
46  virtual ~HOpCreateCircle();
47 
51  virtual const char * GetName();
52 
53 
60  virtual int OnLButtonUp(HEventInfo &hevent);
61 
67  virtual HBaseOperator * Clone();
68  };
69 
70 #ifdef H_PACK_8
71 #pragma pack(pop)
72 #endif
73 
74 #endif
75 
76 
77 
78 
virtual const char * GetName()
The HOpCreateCircle class draws a circle.
Definition: HOpCreateCircle.h:33
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
virtual HBaseOperator * Clone()
virtual int OnLButtonUp(HEventInfo &hevent)
The HOpConstructCircle class draws a circle.
Definition: HOpConstructCircle.h:39