OpenTK1
LearningOpenGL├── Examples
│ ├── Camera.cs
│ ├── Examples.csproj
│ ├── GameComponentCollection.cs
│ ├── IGameComponent.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Shapes
│ │ ├── Cube.cs
│ │ ├── IsoSphere.cs
│ │ ├── Plane.cs
│ │ └── Shape.cs
│ └── Utilities.cs
├── GLControlTest
│ ├── GLControlTest.csproj
│ ├── MyControl.cs
│ ├── Program.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── GlCollision
│ ├── GlCollision.csproj
│ ├── Program.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── GlLighting
│ ├── GlLighting.csproj
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── GlMatrix
│ ├── GlMatrix.csproj
│ ├── Program.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── GlParticle
│ ├── GlParticle.csproj
│ ├── Marble.bmp
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── particle.bmp
│ └── particle_mask.bmp
├── GlRatation
│ ├── GlRatation.csproj
│ ├── MainWindow.cs
│ ├── Program.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── GlReflection
│ ├── GlReflection.csproj
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── brick33.jpg
│ └── water06.jpg
├── GlShadows
│ ├── GlShadows.csproj
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── brick33.jpg
│ └── water06.jpg
├── GlSphere
│ ├── GlSphere.csproj
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Sphere.cs
│ └── earth.bmp
├── LearningOpenGL.sln
├── RenderHeightMap
│ ├── MainWindow.cs
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RenderHeightMap.csproj
│ └── heightmap.png
├── TerrainGL
│ ├── Camera.cs
│ ├── MyGLControl.cs
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── TerrainGL.csproj
│ ├── TerrainTile.cs
│ ├── heightField.raw
│ └── texture.jpg
├── Texture2D
│ ├── Game.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Texture2D.csproj
│ └── logo.jpg
├── VertexBufferObject
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── VertexBufferObject.csproj
│ └── VertexBufferObject.pidb
└── VertexLighting
├── MainWindow.cs
├── Program.cs
├── Properties
│ └── AssemblyInfo.cs
└── VertexLighting.csproj
31 directories, 78 files
评论