Rotating Image in 3 directional..
-
I've an image which is 2 dimensional. I want the image should become 3 dimensional. And that should be rotatable? Can any one help me in this concept?
-
I've an image which is 2 dimensional. I want the image should become 3 dimensional. And that should be rotatable? Can any one help me in this concept?
The answer to this depends on what you mean by making a 2D image 3D. Strictly speaking, in most cases you can't do this automatically (the obvious exception here being converting a bitmap to a terrain using heightmaps), but you could use a modelling tool such as 3DS Max, Maya, Cinema 4D or Zam3D to create a 3D representation of your image. Once you have the model created, rotating it is fairly simple. This[^] article should really help you.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
-
I've an image which is 2 dimensional. I want the image should become 3 dimensional. And that should be rotatable? Can any one help me in this concept?
You can use this XAML for rotating a Grid.
<Grid.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX="1" ScaleY="1"/>
<SkewTransform AngleX="0" AngleY="0"/>
<RotateTransform Angle="-6"/><!-- by changing this property you can rotate the Grid -->
<TranslateTransform X="0" Y="0"/>
</TransformGroup>
</Grid.RenderTransform>Thus you can write it for an image.