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.

link|improve this question

1  
GDI+ is fine in this case. Generating a realistic shade for a 3D effect is going to be the hard part, but not impossible. – ja72 Mar 11 '11 at 16:15
Examples of something similar with GDI+ will be highly appreciated. – Orsol Mar 11 '11 at 16:31
Second that - i've actually written a small 3d engine with lighting and transforms using GDI+. It isn't easy, but can be done. – eckleman Mar 18 '11 at 20:36
+1. Good question! – Otaku Mar 19 '11 at 15:51
I think I'd go GDI+ for that kind of effects. Not easy, but not that hard either. – jv42 Mar 21 '11 at 11:31
feedback

2 Answers

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#

link|improve this answer
+1 for OpenTK - great library. Also most of OpenGL tutorial can be applied while learning it :) – pir0 Mar 17 '11 at 23:37
feedback

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.

link|improve this answer
Not bad by description, but in samples they uses Tao for drawing and library is written in C++. – Orsol Mar 21 '11 at 11:01
It's written in C++ but offers .NET bindings. It may not be what you're looking for. – jv42 Mar 21 '11 at 11:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.