Miko Kronn
Miko Kronn

Reputation: 2454

OpenGL in C# in WinForms

I have to write a simple program that will draw something in a Windows Forms Application using OpenGL and C#? Can you give me example of library and/or maybe a tutorial? I found this: http://sourceforge.net/projects/csgl/files/CsGL/1.4.1/ but it is from 2002. Is there anything newer?

Upvotes: 6

Views: 18815

Answers (2)

Durza007
Durza007

Reputation: 1105

You could check this out: http://opentk.net/

The Open Toolkit is set of fast, low-level C# bindings for OpenGL, OpenGL ES and OpenAL. It runs on all major platforms and powers hundreds of apps, games and scientific research.

OpenTK provides several utility libraries, including a math/linear algebra package, a windowing system, and input handling.

Upvotes: 12

ChrisF
ChrisF

Reputation: 137188

Another alternative is SharpGL on Code Project.

Upvotes: 1

Related Questions