How to Explode a Block
Posted: 16 Mar 2015, 22:33
Hi:
Can you show a code for exploding blocks.
Thanks!
Can you show a code for exploding blocks.
Thanks!
CADSoftTools - AutoCAD DWG DXF HPGL (PLT) SVG CGM STEP IGES STL SAT viewers, converters and developer tools. Delphi and C# source code.
https://cadsofttools.com/forum/
Code: Select all
interface
uses
..., CADImage, DXFConv, sgFunction, sgConsts;
...
implementation
{$R *.dfm}
procedure ExplodeInsert(ACADImage: TsgCADImage; AInsert: TsgDXFInsert);
var
I, J: Integer;
vBlockEnt: TsgDXFEntity;
vDXFInsert: TsgDXFInsert;
vDXFLine: TsgDXFLine;
vDXFLWPolyline: TsgDXFPolyline;
vDXFCircle: TsgDXFCircle;
vMatrix: TFMatrix;
vPoint, vScale, vExtrusion: TFPoint;
vAngle: Double;
begin
vMatrix := AInsert.GetMatrix;
// Iterate through entities in the block
for I := 0 to AInsert.Block.Count - 1 do
begin
vBlockEnt := AInsert.Block.Entities[I];
case vBlockEnt.EntType of
ceLine: // LINE entity
begin
// Create a copy of the entity which is inside the block
vDXFLine := TsgDXFLine.Create;
vDXFLine.AssignEntity(vBlockEnt);
// Multiply coordinates of the created entity by the transformation matrix
vDXFLine.Point := FPointXMat(vDXFLine.Point, vMatrix);
vDXFLine.Point1 := FPointXMat(vDXFLine.Point1, vMatrix);
ACADImage.Converter.Loads(vDXFLine);
ACADImage.CurrentLayout.AddEntity(vDXFLine);
end;
ceLWPolyline: // LWPOLYLINE entity
begin
vDXFLWPolyline := TsgDXFLWPolyline.Create;
vDXFLWPolyline.AssignEntity(vBlockEnt);
for J := 0 to vDXFLWPolyline.Count - 1 do
vDXFLWPolyline.Vertexes[J].Point := FPointXMat(vDXFLWPolyline.Vertexes[J].Point, vMatrix);
ACADImage.Converter.Loads(vDXFLWPolyline);
ACADImage.CurrentLayout.AddEntity(vDXFLWPolyline);
end;
ceCircle: // CIRCLE entity
begin
vDXFCircle := TsgDXFCircle.Create;
vDXFCircle.AssignEntity(vBlockEnt);
vDXFCircle.Point := FPointXMat(vDXFCircle.Point, vMatrix);
vDXFCircle.Radius := DistanceFVector(AffineTransformPoint(MakeFPoint(0, vDXFCircle.Radius, 0), vMatrix));
ACADImage.Converter.Loads(vDXFCircle);
ACADImage.CurrentLayout.AddEntity(vDXFCircle);
end;
ceInsert: // nested INSERT entity
begin
//ExplodeInsert(ACADImage, vSrcEnt as TsgDXFInsert);
vDXFInsert := TsgDXFInsert.Create;
vDXFInsert.AssignEntity(vBlockEnt);
ExtractMatrixParams(FMatXMat(TsgDXFInsert(vBlockEnt).GetMatrix, vMatrix), vPoint, vScale, vExtrusion, vAngle);
vDXFInsert.Point := vPoint;
vDXFInsert.Scale := vScale;
vDXFInsert.Extrusion := vExtrusion;
vDXFInsert.Angle := vAngle;
ACADImage.Converter.Loads(vDXFInsert);
ACADImage.CurrentLayout.AddEntity(vDXFInsert);
end;
end;
end;
// Delete the INSERT after exploding
ACADImage.Converter.RemoveEntity(AInsert, True);
// Recalculate the CAD image extents
ACADImage.GetExtents();
end;
Code: Select all
procedure ExplodeInsert(ACADImage: TsgCADImage; AInsert: TsgDXFInsert);
var
I, J: Integer;
vBlockEnt: TsgDXFEntity;
vDXFInsert: TsgDXFInsert;
vDXFLine: TsgDXFLine;
vDXFLWPolyline: TsgDXFPolyline;
vDXFCircle: TsgDXFCircle;
vDXFText: TsgDXFText;
vDXFMText: TsgDXFMText;
vMatrix: TFMatrix;
vPoint, vScale, vExtrusion: TFPoint;
vAngle: Double;
begin
vMatrix := AInsert.GetMatrix;
// Iterate through entities in the block
for I := 0 to AInsert.Block.Count - 1 do
begin
vBlockEnt := AInsert.Block.Entities[I];
case vBlockEnt.EntType of
ceLine: // LINE entity
begin
// Create a copy of the entity which is inside the block
vDXFLine := TsgDXFLine.Create;
vDXFLine.AssignEntity(vBlockEnt);
// Multiply coordinates of the created entity by the transformation matrix
vDXFLine.Point := FPointXMat(vDXFLine.Point, vMatrix);
vDXFLine.Point1 := FPointXMat(vDXFLine.Point1, vMatrix);
ACADImage.Converter.Loads(vDXFLine);
ACADImage.CurrentLayout.AddEntity(vDXFLine);
end;
ceText: // TEXT entity
begin
vDXFText := TsgDXFText.Create;
vDXFText.AssignEntity(vBlockEnt);
if vDXFText.InsideMText then
vDXFText.Point1 := FPointXMat(AInsert.Point, FMatByTranslate(vDXFText.Point1))
else
vDXFText.Point := FPointXMat(vDXFText.Point, vMatrix);
ACADImage.Converter.Loads(vDXFText);
ACADImage.CurrentLayout.AddEntity(vDXFText);
end;
ceLWPolyline: // LWPOLYLINE entity
begin
vDXFLWPolyline := TsgDXFLWPolyline.Create;
vDXFLWPolyline.AssignEntity(vBlockEnt);
for J := 0 to vDXFLWPolyline.Count - 1 do
vDXFLWPolyline.Vertexes[J].Point := FPointXMat(vDXFLWPolyline.Vertexes[J].Point, vMatrix);
ACADImage.Converter.Loads(vDXFLWPolyline);
ACADImage.CurrentLayout.AddEntity(vDXFLWPolyline);
end;
ceCircle: // CIRCLE entity
begin
vDXFCircle := TsgDXFCircle.Create;
vDXFCircle.AssignEntity(vBlockEnt);
vDXFCircle.Point := FPointXMat(vDXFCircle.Point, vMatrix);
vDXFCircle.Radius := DistanceFVector(AffineTransformPoint(MakeFPoint(0, vDXFCircle.Radius, 0), vMatrix));
ACADImage.Converter.Loads(vDXFCircle);
ACADImage.CurrentLayout.AddEntity(vDXFCircle);
end;
ceInsert: // nested INSERT entity
begin
vDXFInsert := TsgDXFInsert.Create;
vDXFInsert.AssignEntity(vBlockEnt);
ExtractMatrixParams(FMatXMat(TsgDXFInsert(vBlockEnt).GetMatrix, vMatrix), vPoint, vScale, vExtrusion, vAngle);
vDXFInsert.Point := vPoint;
vDXFInsert.Scale := vScale;
vDXFInsert.Extrusion := vExtrusion;
vDXFInsert.Angle := vAngle;
ACADImage.Converter.Loads(vDXFInsert);
ACADImage.CurrentLayout.AddEntity(vDXFInsert);
end;
ceMText: // MTEXT entity
begin
vDXFMText := vBlockEnt as TsgDXFMText;
// Extract TEXT entities from the MTEXT
ExplodeInsert(ACADImage, vDXFMText);
end;
end;
end;
// Delete the INSERT after exploding
ACADImage.Converter.RemoveEntity(AInsert, True);
// Recalculate the CAD image extents
ACADImage.GetExtents();
end;
Code: Select all
function TsgDXFConverter.GetTextPolylines(const AText: TsgDXFText; const AList: TList): Integer;
Code: Select all
procedure CreatePolylines(ACADImage: TsgCADImage; const AList: TList);
var
I, J: Integer;
vPoly: TsgDXFPolyline;
vVertex: TsgDXFVertex;
vContour: TList;
begin
for I := 0 to AList.Count - 1 do
begin
vPoly := TsgDXFPolyline.Create();
vPoly.Color := clRed;
vPoly.Closed := False;
vContour := AList[I];
for J := 0 to vContour.Count - 1 do
begin
vVertex := TsgDXFVertex.Create();
vVertex.Point := TFPoint(vContour[J]^);
vPoly.AddEntity(vVertex);
end;
ACADImage.Converter.Loads(vPoly);
ACADImage.CurrentLayout.AddEntity(vPoly);
end;
ACADImage.GetExtents();
vContour.Free;
end;