summaryrefslogtreecommitdiff
path: root/task05_2D/Guschin/MyForm.cpp
diff options
context:
space:
mode:
authorAndrew Guschin <saintruler@gmail.com>2020-11-10 01:15:07 +0300
committerAndrew Guschin <saintruler@gmail.com>2020-11-10 01:15:07 +0300
commit73c6ec80c71dd43125b6a9b00dd9e940b827f29f (patch)
treecc3efa28497fe78f925522deedc772e930e11f1d /task05_2D/Guschin/MyForm.cpp
parent70a1711e877ba980e094ef66925568ee94afc3af (diff)
Разделил 5 задачу на два проекта
Diffstat (limited to 'task05_2D/Guschin/MyForm.cpp')
-rw-r--r--task05_2D/Guschin/MyForm.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/task05_2D/Guschin/MyForm.cpp b/task05_2D/Guschin/MyForm.cpp
new file mode 100644
index 0000000..bb5fa5d
--- /dev/null
+++ b/task05_2D/Guschin/MyForm.cpp
@@ -0,0 +1,17 @@
+#include "Matrix.h"
+#include <math.h>
+#include "Transform.h"
+#include "Clip.h"
+#include <vector>
+#include "MyForm.h"
+
+using namespace System;
+using namespace System::Windows::Forms;
+
+[STAThreadAttribute]
+void Main(array<String^> ^ args) {
+ Application::EnableVisualStyles();
+ Application::SetCompatibleTextRenderingDefault(false);
+ Guschin::MyForm form;
+ Application::Run(% form);
+} \ No newline at end of file