diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2020-11-28 19:13:38 +0400 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2020-11-28 19:13:38 +0400 |
| commit | 9ac6d0e563ab6409fcb2a42d8ccff0dcf3008904 (patch) | |
| tree | 5a8ecd709dbc7e56d1abf3e51b6af65544d91d84 /task06/Guschin/MyForm.cpp | |
| parent | 7be113983ed5e8a499ece4bcdf8463c33c9a7b1b (diff) | |
Добавил заготовку 6 задачи
Diffstat (limited to 'task06/Guschin/MyForm.cpp')
| -rw-r--r-- | task06/Guschin/MyForm.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/task06/Guschin/MyForm.cpp b/task06/Guschin/MyForm.cpp new file mode 100644 index 0000000..a7e65d4 --- /dev/null +++ b/task06/Guschin/MyForm.cpp @@ -0,0 +1,20 @@ +#include "Matrix.h" +#include <math.h> +#include "Transform.h" +#include "Figure.h" +#include "Clip.h" +#include <vector> +#include <fstream> +#include <sstream> +#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 |