Add another 3D object to the current scene
Moderators: SDS, support, admin
Add another 3D object to the current scene
Hi,
I am able to load .dxf and .stp/.step files into my Delphi 3D viewer.
Is there a way to add a second object into the scene without losing the already existing one?
-Mike
I am able to load .dxf and .stp/.step files into my Delphi 3D viewer.
Is there a way to add a second object into the scene without losing the already existing one?
-Mike
Re: Add another 3D object to the current scene
Hello Mike,
What 3D objects do you want to add? CAD VCL allows to add DXF entities (LINE, POLYLINE, ARC, CIRCLE, ELLIPSE, etc.) programmatically in 2D Wireframe mode.
Mikhail
What 3D objects do you want to add? CAD VCL allows to add DXF entities (LINE, POLYLINE, ARC, CIRCLE, ELLIPSE, etc.) programmatically in 2D Wireframe mode.
Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support
Re: Add another 3D object to the current scene
Hi Mikhail,
I have a DXF-object in the scene but want to load another one into the same scene so I have two DXF-objects.
Is that possible?
-Mike
I have a DXF-object in the scene but want to load another one into the same scene so I have two DXF-objects.
Is that possible?
-Mike
Re: Add another 3D object to the current scene
Hello Mike,
Yes, it is possible. You have to create DXF entity programmatically, add it into TsgDXFConverter, then reload the scene using Tsg3DDrawingNavigator.LoadFromConverter method. Please, specify which DXF entities do you want to add.
Mikhail
Yes, it is possible. You have to create DXF entity programmatically, add it into TsgDXFConverter, then reload the scene using Tsg3DDrawingNavigator.LoadFromConverter method. Please, specify which DXF entities do you want to add.
Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support
Re: Add another 3D object to the current scene
Hi Mikhail,
I did exactly what you said and it works perfectly.
Thanks for the great help
-Mike
I did exactly what you said and it works perfectly.
Thanks for the great help
-Mike
-
- Posts: 8
- Joined: 26 Aug 2015, 11:12
Re: Add another 3D object to the current scene
Hi! Could you show more in detail the required code to achieve this?
Re: Add another 3D object to the current scene
Hello Tiago,
The following procedure creates a new line (TsgDXFLine) and adds it into TsgDXFConverter:
Thus, you add a new DXF entity to the converter, then reload all the entities from the converter into the scene:
Mikhail
The following procedure creates a new line (TsgDXFLine) and adds it into TsgDXFConverter:
Code: Select all
procedure AddLine(ACADImage: TsgCADImage);
var
vLine: TsgDXFLine;
begin
vLine := TsgDXFLine.Create;
vLine.Point := MakeFPoint(300.0, 400.0, 0);
vLine.Point1 := MakeFPoint(760.0, 530.0, 0);
ACADImage.CurrentLayout.AddEntity(vLine);
if Assigned(ACADImage.Converter.OnCreate) then
ACADImage.Converter.OnCreate(vLine);
ACADImage.Converter.Loads(vLine);
ACADImage.GetExtents;
end;
Code: Select all
AddLine(vCADImage);
F3DN.LoadFromConverter(vCADImage.Converter, vCADImage);
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support