vote up 5 vote down star
3

Hi,

I recently faced a problem of presenting the output of simple genetic algorithm that looks for extremes of 2 argument function f(x1,x2) . I would like to be able to use x1 as x, x2 as y and f as z and to draw points in 3d space that I could rotate. ( I'm currently drawing this on bitmap using color as the 'z axis'.)

Where should I start?

UPDATE:

I found a directory of 3D engines for C# but there are a lot to choose from... Could you advise if any one of them would be best for my problem?

UPDATE 2:

Thanks to Cameron's suggestion a 3D options in WPF seem to be suiting my needs. I will give it a try for sure.

I am reposting his links here:
* WPF 3D Tutorial
* CodeProject: WPF 3D Primer
* CodeProject: WPF 3D : Part 1 of n

flag

68% accept rate

5 Answers

vote up 3 vote down check

If you can use WPF at all, then you can do some pretty easy simple stuff right away.

Here's some links to get started:

link|flag
Thanks Cameron, very interesting! – Kamil Zadora Jan 2 '09 at 0:47
vote up 2 vote down

I use OpenInventor for scientific visualisation. It may be (in some ways) a relic of the old SGI days, but it is still being supported and works well. Regarding graphing and other scientific visualisation, look at MeshViz and other extensions from Mercury:

It has charting, vector visualisation, etc. It's quite comprehensive.

It's not free, but they do trial licenses so you can determine if it suits your needs.

link|flag
oops - forgot to explicitly mention that there are .Net bindings available from Mercury that work quite well. – Daniel Paull Jan 1 '09 at 23:54
vote up 3 vote down

there is tao framework if you would like to do tings from scratch, like me. It is a opengl framwork(with more) for C#. taoframework link

link|flag
vote up 2 vote down

If you prefer coding OpenGL directly (instead of using an engine), check out OpenTK or the Tao Framework. Both use the same codebase, but OpenTK follows .Net conventions more closely and is easier to use.

link|flag
vote up 1 vote down

wpf + managed dx.

link|flag

Your Answer

Get an OpenID
or

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