2D to 3D conversion

Discuss and ask questions about CAD .NET library.

Moderators: SDS, support, admin

Post Reply
ashwin.masarkar
Posts: 5
Joined: 22 Dec 2008, 09:11

2D to 3D conversion

Post by ashwin.masarkar » 22 Dec 2008, 09:19

Is it possible to convert 2D image into 3D image?

support
Posts: 3272
Joined: 30 Mar 2005, 11:36
Contact:

Re: 2D to 3D conversion

Post by support » 22 Dec 2008, 12:12

Hello!

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

Sergey.
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

ashwin.masarkar
Posts: 5
Joined: 22 Dec 2008, 09:11

Re: 2D to 3D conversion

Post by ashwin.masarkar » 22 Dec 2008, 16:46

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.

support
Posts: 3272
Joined: 30 Mar 2005, 11:36
Contact:

Re: 2D to 3D conversion

Post by support » 23 Dec 2008, 09:13

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.
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

ashwin.masarkar
Posts: 5
Joined: 22 Dec 2008, 09:11

Re: 2D to 3D conversion

Post by ashwin.masarkar » 23 Dec 2008, 13:11

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.

support
Posts: 3272
Joined: 30 Mar 2005, 11:36
Contact:

Re: 2D to 3D conversion

Post by support » 23 Dec 2008, 14:57

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.
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

Post Reply