Removed System.Drawing dependency from QuickStart.

This commit is contained in:
the_fiddler 2009-11-04 21:22:41 +00:00
Родитель ada915fed0
Коммит 3129b359a9
3 изменённых файлов: 7 добавлений и 7 удалений

Двоичные данные
Build.exe

Двоичный файл не отображается.

Просмотреть файл

@ -34,7 +34,6 @@
</Configuration>
<Reference name="System"/>
<Reference name="System.Drawing"/>
<Reference name="OpenTK" localCopy="true"/>
<Files>

Просмотреть файл

@ -1,5 +1,6 @@
// Released to the public domain. Use, modify and relicense at will.
using System;
using System.Drawing;
using OpenTK;
using OpenTK.Graphics;
@ -25,7 +26,7 @@ namespace StarterKit
{
base.OnLoad(e);
GL.ClearColor(System.Drawing.Color.MidnightBlue);
GL.ClearColor(0.1f, 0.2f, 0.5f, 0.0f);
GL.Enable(EnableCap.DepthTest);
}
@ -39,7 +40,7 @@ namespace StarterKit
{
base.OnResize(e);
GL.Viewport(ClientRectangle);
GL.Viewport(ClientRectangle.X, ClientRectangle.Y, ClientRectangle.Width, ClientRectangle.Height);
Matrix4 projection = Matrix4.CreatePerspectiveFieldOfView((float)Math.PI / 4, Width / (float)Height, 1.0f, 64.0f);
GL.MatrixMode(MatrixMode.Projection);
@ -74,9 +75,9 @@ namespace StarterKit
GL.Begin(BeginMode.Triangles);
GL.Color3(Color.Yellow); GL.Vertex3(-1.0f, -1.0f, 4.0f);
GL.Color3(Color.Red); GL.Vertex3(1.0f, -1.0f, 4.0f);
GL.Color3(Color.LightCyan); GL.Vertex3(0.0f, 1.0f, 4.0f);
GL.Color3(1.0f, 1.0f, 0.0f); GL.Vertex3(-1.0f, -1.0f, 4.0f);
GL.Color3(1.0f, 0.0f, 0.0f); GL.Vertex3(1.0f, -1.0f, 4.0f);
GL.Color3(0.2f, 0.9f, 1.0f); GL.Vertex3(0.0f, 1.0f, 4.0f);
GL.End();