summaryrefslogtreecommitdiffhomepage
path: root/Magic2/Primitives.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Magic2/Primitives.cpp')
-rw-r--r--Magic2/Primitives.cpp51
1 files changed, 0 insertions, 51 deletions
diff --git a/Magic2/Primitives.cpp b/Magic2/Primitives.cpp
deleted file mode 100644
index a86f126..0000000
--- a/Magic2/Primitives.cpp
+++ /dev/null
@@ -1,51 +0,0 @@
-/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
- Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
- Copyright (c) 1997-2006, Destroyer Studios LLC.
-
- AUTHOR: John DiCamillo
-
-
- OVERVIEW
- ========
- Commands for adding basic geometric primitives to a mesh
-*/
-
-
-#include "stdafx.h"
-#include "Primitives.h"
-#include "MagicDoc.h"
-#include "ModelView.h"
-#include "Selection.h"
-
-// +----------------------------------------------------------------------+
-// +----------------------------------------------------------------------+
-// +----------------------------------------------------------------------+
-
-CreatePolyCommand::CreatePolyCommand(MagicDoc* d)
- : Command(n, d)
-{
-}
-
-CreatePolyCommand::~CreatePolyCommand()
-{
-}
-
-// +----------------------------------------------------------------------+
-
-void
-CreatePolyCommand::Do()
-{
- if (document) {
- }
-}
-
-// +----------------------------------------------------------------------+
-
-void
-EditCommand::Undo()
-{
- if (document) {
- }
-}
-