views:

123

answers:

3

How can i download openGl for C#?

+1  A: 

Hi,

you might give this library a try: SharpGL.

Grz, Kris.

XIII
i need openGL.....
Phsika
What you need is a OpenGL Binding, since OpenGL is usually provided as a C library. This answer is exactly what you need.There's no OpenGL for C# more than just bindings.
Matias Valdenegro
+1  A: 

The Tao project provides full OpenGL bindings (including extensions) for .NET (including C#).

Reed Copsey
A: 

There is also ArcBall: http://www.codeproject.com/KB/openGL/arcball.aspx

There are also two parts to what you are looking for: Arccball provides .NET bindings for OpenGL and will be used for the coding/implementation. At runtime, the calls to the OpenGL runtime are handled by opengl32.dll found in c:\windows\system32

One caveat is that you'll need a version match between opengl32.dll and whatever.NET library you use.

Babak Naffas