Page 1 of 1

2D to 3D conversion

Posted: 22 Dec 2008, 09:19
by ashwin.masarkar
Is it possible to convert 2D image into 3D image?

Re: 2D to 3D conversion

Posted: 22 Dec 2008, 12:12
by support
Hello!

2D drawing is a particular case of 3D drawing. Can you please open your question wider?

Sergey.

Re: 2D to 3D conversion

Posted: 22 Dec 2008, 16:46
by ashwin.masarkar
Thanks for your immediate reply,

Actually I'm ver new to CAD Import.NET technology. What I want is I have a Floor plan of a building, now I want it to show that Floor plan in 3D view so that user can get a perfect view of what is inside the building.
Please help me or suggest solution from where I can achieve this.

Re: 2D to 3D conversion

Posted: 23 Dec 2008, 09:13
by support
Hello!

Would you please try the following code with your files:

Code: Select all

private void button1_Click(object sender, System.EventArgs e)
{				
	if(this.cadImage == null) 
		return;

	this.cadImage.UseDoubleBuffering = false;			
	this.cadImage.Rotate(CADImport.FaceModule.Axes.X, 60);
	this.cadImage.Rotate(CADImport.FaceModule.Axes.Z, 45);
	this.cadPictBox.Invalidate();
}
Sergey.

Re: 2D to 3D conversion

Posted: 23 Dec 2008, 13:11
by ashwin.masarkar
Thanks for help Sergey,

But the problem is that I'm testing this on demo version of CAD Import.NET. Here no CADImage namespace is present. Can I have by any means look and feel of the original image and after the logic mentioned above implemented on that image?
I hope you can understand that we have very limited resources, so we just want to assure ourselves that our requirement will be surely fulfilled by CAD Import.NET. It should not happen that we are going into wrong deal.
Please suggest.

Re: 2D to 3D conversion

Posted: 23 Dec 2008, 14:57
by support
First of all it is necessary to use extended version of the library. Please contact us via e-mail to support@cadsofttools.com accordingly to this question.

Sergey.