CSharpGL 1.0.4.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package CSharpGL --version 1.0.4.2
NuGet\Install-Package CSharpGL -Version 1.0.4.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CSharpGL" Version="1.0.4.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CSharpGL --version 1.0.4.2
#r "nuget: CSharpGL, 1.0.4.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CSharpGL as a Cake Addin
#addin nuget:?package=CSharpGL&version=1.0.4.2

// Install CSharpGL as a Cake Tool
#tool nuget:?package=CSharpGL&version=1.0.4.2

CSharpGL is a pure C# project that allows for modern OpenGL rendering in an Object-Oriented way. For more information please check (https://bitzhuwei.github.io/CSharpGL/)

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.7.4 3,682 11/17/2016
1.0.7.3 1,592 11/11/2016
1.0.7.2 1,822 11/2/2016
1.0.7.1 1,444 10/26/2016
1.0.7 1,647 10/13/2016
1.0.6.8 1,675 9/28/2016
1.0.6.7 1,679 9/23/2016
1.0.6.6 2,303 9/20/2016
1.0.6.5 1,269 9/13/2016
1.0.6.4 1,401 9/8/2016
1.0.6.3 1,500 8/26/2016
1.0.6.2 1,428 8/21/2016
1.0.6.1 1,398 8/12/2016
1.0.6 1,470 8/12/2016
1.0.5.2 1,339 8/9/2016
1.0.5.1 1,474 8/7/2016
1.0.5 1,612 8/2/2016
1.0.4.13 1,967 7/30/2016
1.0.4.12 1,590 7/15/2016
1.0.4.11 1,443 7/6/2016
1.0.4.10 1,557 6/30/2016
1.0.4.9 1,448 6/22/2016
1.0.4.8 1,428 6/21/2016
1.0.4.7 1,617 6/20/2016
1.0.4.6 1,773 6/18/2016
1.0.4.5 1,477 6/17/2016
1.0.4.2 2,030 6/14/2016
1.0.4.1 2,597 6/9/2016
1.0.4 1,581 6/8/2016
1.0.3 1,565 6/4/2016
1.0.2 1,458 6/1/2016
1.0.1 1,465 5/13/2016
1.0.0.9 1,439 5/3/2016
1.0.0.2 1,606 4/29/2016
1.0.0.1 1,485 4/29/2016

# release notes:
## v1.0.4.2:
1. Stronger Camera class: Get directions.
2. Faster glm.lookAt().
3. CSSL integrates all build-in funcitons from GLSL shader pdf(not into CSharpGL)
4. Easier to use GLControl as root UI renderer.(Auto-bind to canvas' resize event)
5. Clean interface and implementation for FontResource.
6. Update frame buffer constants.
7. Remove unused resources(teapot.obj etc.) to reduce CSharpGL.dll's file size.
8. internal fields of mat2/mat3/mat4 for better performance.

## v1.0.4.1:
1. integrate all uniform variables and array variables inheriting from UniformVariable.

## v1.0.4.0:
1. Renderer supports setup uniform array variable.(uniform vec3 positions[10];)
2. Different kinds of uniform arrays: float[], vec2[], vec3[], vec4[], mat2[], mat3[],mat4[], samplerValue[].

## v1.0.3.0:
1. Get a Font Resource from TTF files.
2. Font Resource supports rendering text.

## v1.0.2.0:
1. GLControls allows for control-style objects.
2. A GLAxis and GLText control.
3. More OpenGL switches and uniforms.

## v1.0.1.0:
1. Only pickable Renderer check if position buffer's DataSize is 3.
2. Adjust camera's default settings.
3. OneIndexBufferPtr can controls the first element to be rendered.

## v1.0.0.9:
1. supports picking of point, line and basic geometry(triangle, quad, polygon) from any kind of OneIndexRenderer or ZeroIndexRenderer.
2. rename *ModernRenderer*.cs to *Renderer*.cs
3. fix bug in QuadStripRecoginzer: reorder its vertexs to form a quad.(0 1 2 3 -> 0 1 3 2)

## v1.0.0.2:
1. add model: BigDipper, Tetrahedron, Cube, Sphere, Teapot.

## v1.0.0.1:
1. Modern rendering(Shader+VBO).
2. Color-coded-picking of primitives in a VBO.
3. Highlight picked primitives.
4. Draw text using glRasterPos() and CallList.
5. PolygonOffsetSwitch.
6. UILayout.