diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2020-11-09 23:28:49 +0300 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2020-11-09 23:28:49 +0300 |
| commit | 0408d33694635cdc28db23c9c6388bd916626bde (patch) | |
| tree | 843f2e61b8f5652ff3b2f19779820c223403ca7d /task03/Guschin/MyForm.cpp | |
Добавил первые 4 задания
Diffstat (limited to 'task03/Guschin/MyForm.cpp')
| -rw-r--r-- | task03/Guschin/MyForm.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/task03/Guschin/MyForm.cpp b/task03/Guschin/MyForm.cpp new file mode 100644 index 0000000..b33e1e5 --- /dev/null +++ b/task03/Guschin/MyForm.cpp @@ -0,0 +1,19 @@ +#include "Matrix.h" +#include <math.h> +#include "Transform.h" +#include "Figure.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 |