views:

390

answers:

1

Hi All

I want to plot some data in 3D in VC++.

I searched the internet and MSDN for not much help. In SO, I found many links towards gnu, and things like that, which are (not) windows stuff.

If possible, can someone point me to some 3d plot API, or source for VC++ ...

Thank you

+2  A: 

You can use SDL with OpenGL extensions, use DirectX or directly OpenGL.

Another solutions could be using Allegro ( www.allegro.cc ) or even use GDI and transform 3d coordinates into 2d system. ( Isn't so hard ).

HyLian
Basically I want to give 3 points, and wants some tool to draw a small surface, I am not able to think mathematically to do this by myself using GDI.
Alphaneo
Draw a surface is a little bit more complicated than just draw points. I suggest you to use SDL with OpenGL. DirectX is more complicated that OpenGL
HyLian
If all you want is to draw a surface, manually projecting the points and drawing polygon using GDI seems the easiest approach.
EFraim