I'm very new to 3D Graphics and Silverlight so this may be a ridiculous first endeavor but... I've been asked to determine how viable it is to produce an "avatar" creator which will be a part of a larger C#/ASP.NET website.
So far my plan is to use Kit3D to access the 3D capabilities of WPF and render a 3D model through Silverlight as ...
Hello, I am loading an image to my silverlight application. This image will fit in a 3d model as a texture map. I need to fetch image attributes. For that I am using ImageOpened event, like this:
public MainPage()
{
BitmapImage img = new BitmapImage(new Uri("imagens/textura.jpg", UriKind.Relative));
img.ImageOpened...
I currently work on a very cool Silverlight app that displays photos in a 3D wall space like the Wall3D demo that is thrown in with Blend 3.
The problem I am currently facing is performance. The app works like this:
As you scroll right or left the 3d photo wall rotates
As each movement is made, the next column of photos are downloaded...