diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2020-12-01 13:32:34 +0400 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2020-12-01 13:32:34 +0400 |
| commit | d7ec491d915cb19c85ba2567ed82f1dd0458ed57 (patch) | |
| tree | 16fcb2ace3ce85a02013d836d5547550fd44a1e9 /task06/Guschin | |
| parent | 6f4ffb090b53443338f0b3bdeb4c804383e5bb2b (diff) | |
Diffstat (limited to 'task06/Guschin')
| -rw-r--r-- | task06/Guschin/MyForm.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/task06/Guschin/MyForm.h b/task06/Guschin/MyForm.h index 0f17cb8..3f268c9 100644 --- a/task06/Guschin/MyForm.h +++ b/task06/Guschin/MyForm.h @@ -59,8 +59,8 @@ namespace Guschin { // openFileDialog // this->openFileDialog->DefaultExt = L"txt"; - this->openFileDialog->Filter = L" (*.txt)|*.txt| (*.*)|*.*"; - this->openFileDialog->Title = L" "; + this->openFileDialog->Filter = L"��������� ����� (*.txt)|*.txt|��� ����� (*.*)|*.*"; + this->openFileDialog->Title = L"������� ����"; // // btnOpen // @@ -69,7 +69,7 @@ namespace Guschin { this->btnOpen->Name = L"btnOpen"; this->btnOpen->Size = System::Drawing::Size(151, 48); this->btnOpen->TabIndex = 0; - this->btnOpen->Text = L""; + this->btnOpen->Text = L"�������"; this->btnOpen->UseVisualStyleBackColor = true; this->btnOpen->Click += gcnew System::EventHandler(this, &MyForm::btnOpen_Click); // @@ -192,15 +192,15 @@ namespace Guschin { initWorkPars(); break; - case Keys::D3: - pType = Perspective; - break; case Keys::D1: pType = Ortho; break; case Keys::D2: pType = Frustum; break; + case Keys::D3: + pType = Perspective; + break; case Keys::W: if (Control::ModifierKeys == Keys::Shift) { T = lookAt(vec3(0, 0, -0.1), vec3(0, 0, -0.2), vec3(0, 0.1, 0)) * T; |