Denis Palnitsky
Denis Palnitsky

Reputation: 18387

Very simple 2d and 3d graphics library

I have to create library that render static, simple shapes with some 3d effects such as rotation and bevels. Shapes can contains text or image on it. Something similar to this: enter image description here

I think that with GDI+ it will be hard to implement so is there any CLS compliant library that will help me with rendering?

P.S. I can not use WPF.

Upvotes: 5

Views: 5916

Answers (2)

jv42
jv42

Reputation: 8583

You could try SFML: main page - features (includes bindings).

It's got a Shape primitive, is based on OpenGL rendering and includes support for shaders.

Upvotes: 1

SOUser
SOUser

Reputation: 3852

Try to read the following stackoverflow page to choose the engine:

What to use? Tao, SharpGL, OpenTK, DirectX P/Invoke, XNA, MDX, SlimDX, Windows API Codec Pack

One example for the Tao framework with C# can be found in codeproject:
OpenGL 3D Navigation with Tao and C#

Upvotes: 5

Related Questions