HOpCreateNurbsCurve.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 // HOpCreateNurbsCurve.h - interface for the HOpCreateNurbsCurve class
11 // started GP 11/1/99
12 
13 #ifndef _HOPCREATENURBSCURVE_H
14 #define _HOPCREATENURBSCURVE_H
15 
16 #ifdef H_PACK_8
17 #pragma pack(push)
18 #pragma pack(8)
19 #endif
20 
21 #include "HTools.h"
22 #include "HOpConstructNurbsCurve.h"
23 
24 
26 
41 {
42 public:
50  HOpCreateNurbsCurve(HBaseView* view, int DoRepeat=0, int DoCapture=1);
51  virtual ~HOpCreateNurbsCurve();
52 
58  virtual HBaseOperator * Clone();
59 
63  virtual const char * GetName();
64 
71  virtual int OnLButtonDblClk(HEventInfo &hevent);
72 
73 };
74 
75 
76 #ifdef H_PACK_8
77 #pragma pack(pop)
78 #endif
79 
80 #endif
81 
82 
83 
84 
85 
virtual const char * GetName()
The HOpCreateNurbsCurve class provides support for constructing a Non Uniform Rational B-Spline (NURB...
Definition: HOpCreateNurbsCurve.h:40
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 OnLButtonDblClk(HEventInfo &hevent)
The HOpConstructNurbsCurve class provides support for constructing a Non Uniform Rational B-Spline (N...
Definition: HOpConstructNurbsCurve.h:41