CSharpGL 1.0.4.7

There is a newer version of this package available.
See the version list below for details.
dotnet add package CSharpGL --version 1.0.4.7
NuGet\Install-Package CSharpGL -Version 1.0.4.7
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.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CSharpGL --version 1.0.4.7
#r "nuget: CSharpGL, 1.0.4.7"
#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.7

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

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,691 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,304 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,968 7/30/2016
1.0.4.12 1,590 7/15/2016
1.0.4.11 1,444 7/6/2016
1.0.4.10 1,558 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,031 6/14/2016
1.0.4.1 2,598 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,607 4/29/2016
1.0.0.1 1,485 4/29/2016

# release notes:
## v1.0.4.7:
1. Enable/Disable SceneObject controls whether it takes part in rendering and updating.
2. SceneObject's transform(position/scale/rotation) is updated according to parent/child relation then to script component.
3. Sphere supports uv mapping attribute.
4. SatelliteManipulater manipulates camera's posiiton, rotation and distance to target. Camera acts like a sateliite moving around its target when manipulated by SatelliteManipulater.
5. Rename vec2/vec3/vec4.Magnitude() -> length().
6. LabelRenderer renders a text label in 3D world space. The text can be updated in runtime.
7. Fix bug: teapot's face property buffer.
8. Fix bug: FontResource should provide seperate default instances for different render contexts.

## v1.0.4.6:
1. FormSelectType loads specified types from all loaded assemblies and cache them.
2. TransformCompoent and ScriptComponent works simiar to those in Unity.

## v1.0.4.5:
1. Scene object and components learnt from Unity.
2. UITypeEditor for Camera, Scene types.
3. OpenGLVersion Only works in design mode.
4. No need check value type for UniformValue in release mode.
5. Add Cube, Sphere and Ground as buil-in Scene-Object.
6. Update color algorithm for cube and sphere.
7. Remove unnecessary versions of GetViewMat4().
8. FirstPerspectiveManipulater allows for move camera by key event and mouse event.

## 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.