I am trying to put together a desktop app for a client. They want the logo in the top corner (on a tool bar) to be a spinning 3D banana. I had planned to write this in C#. Any ideas how I could pull this off?

link|improve this question

70% accept rate
2  
I can't say how long I've wondered that myself... :-) – Brian Knoblauch Feb 3 '09 at 19:17
If I were your client I would go ape for a feature like that ... thanks I'm here all week. – Kevin Loney Feb 3 '09 at 19:20
2  
worthy as a story plot in a Dilbert cartoon – Lars Tackmann Mar 2 '10 at 16:28
feedback

5 Answers

up vote 15 down vote accepted

Create it as an animated gif or apng, possibly in something like POV-Ray or Blender.

It's a very dumb move to actually render 3d graphics for the logo of an application that doesn't otherwise require it ;)

link|improve this answer
Tell me about it. Sometimes these things aren't up to the dev! – Anthony D Feb 3 '09 at 19:15
But that's the answer. Don't render it at run-time. Just toss the rendered animation in. – user54650 Feb 3 '09 at 19:17
Yeah I like that idea, maybe sub out the gif creation. – Anthony D Feb 3 '09 at 19:20
It's a good idea...programmers are rarely graphic artists. – user54650 Feb 3 '09 at 19:35
Your client should provide you with the GIF or PNG - it's their logo, they should want to have control over how it looks. – Michael Burr Feb 3 '09 at 19:49
feedback

The simplest solution would probably be an animated gif. The PictureBox has direct support for that.

link|improve this answer
feedback

If I had to waste my time doing this, I would use the 3d support in WPF and then translate the point information from a model from a modelling program where you can actually model the banana.

I would just create the model in some sort of 3d program and then animate it and export it as an animated gif or AVI file and then display that. No need to waste processor cycles trying to compute something like this.

link|improve this answer
feedback

I agree with cmartin that you should create some kind of animation and display it instead of going to the trouble of creating a 3D renderer. That would just be overkill. However, I'd recommend you use something other than GIF if you require it to look very good, since GIFs are limited in the number of colors they can display, IIRC.

link|improve this answer
feedback

Good chance you can find a free banana model for something like Blender and (with author's permission of course) animate it in a spinning motion and export it to gif.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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