From 8898ad9b25fca6afe2374d293a981db02a83d7e9 Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Thu, 31 May 2012 14:46:27 +0000 Subject: Committing the documentation to svn to have it accessible online --- Doc/doxygen/html/_primitives_8h_source.html | 172 ++++++++++++++++++++++++++++ 1 file changed, 172 insertions(+) create mode 100644 Doc/doxygen/html/_primitives_8h_source.html (limited to 'Doc/doxygen/html/_primitives_8h_source.html') diff --git a/Doc/doxygen/html/_primitives_8h_source.html b/Doc/doxygen/html/_primitives_8h_source.html new file mode 100644 index 0000000..9af460e --- /dev/null +++ b/Doc/doxygen/html/_primitives_8h_source.html @@ -0,0 +1,172 @@ + + + + + +Starshatter_Open: D:/SRC/StarshatterSVN/Magic2/Primitives.h Source File + + + + + + + + + + + + + +
+
+ + + + + + +
+
Starshatter_Open +
+
Open source Starshatter engine
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
Primitives.h
+
+
+Go to the documentation of this file.
1 /* Project Magic 2.0
+
2  Destroyer Studios LLC
+
3  Copyright © 1997-2004. All Rights Reserved.
+
4 
+
5  SUBSYSTEM: Magic.exe
+
6  FILE: Primitives.h
+
7  AUTHOR: John DiCamillo
+
8 
+
9 
+
10  OVERVIEW
+
11  ========
+
12  Commands for adding basic geometric primitives to a mesh
+
13 */
+
14 
+
15 #ifndef Primitives_h
+
16 #define Primitives_h
+
17 
+
18 #include "MagicDoc.h"
+
19 #include "Command.h"
+
20 #include "Polygon.h"
+
21 #include "Solid.h"
+
22 #include "Video.h"
+
23 #include "List.h"
+
24 
+
25 // +--------------------------------------------------------------------+
+
26 
+
27 class Selection;
+
28 class ModelView;
+
29 
+
30 // +--------------------------------------------------------------------+
+
31 
+
32 class CreatePolyCommand : public Command
+
33 {
+
34 public:
+ +
36  int nsides,
+
37  double lx,
+
38  double ly,
+
39  double lz);
+
40  virtual ~CreatePolyCommand();
+
41 
+
42  virtual void Do();
+
43  virtual void Undo();
+
44 
+
45 private:
+
46  int nsides;
+
47  double lx;
+
48  double ly;
+
49  double lz;
+
50 };
+
51 
+
52 // +--------------------------------------------------------------------+
+
53 
+
54 #endif Primitives_h
+
55 
+
+
+ + + + -- cgit v1.1