Skip to content

Commit

Permalink
Merge pull request DomCR#451 from DomCR/issue-445_DwgWriter-Solid-fix
Browse files Browse the repository at this point in the history
issue-445
  • Loading branch information
DomCR authored Sep 13, 2024
2 parents d24f9de + 49dad91 commit e17cacb
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1722,8 +1722,6 @@ private void writeShape(Shape shape)

private void writeSolid(Solid solid)
{
this.writeCommonEntityData(solid);

//Thickness BT 39
this._writer.WriteBitThickness(solid.Thickness);

Expand Down Expand Up @@ -2173,8 +2171,6 @@ private void writeMText(MText mtext)

private void writeFaceRecord(VertexFaceRecord face)
{
this.writeCommonEntityData(face);

//Vert index BS 71 1 - based vertex index(see DXF doc)
this._writer.WriteBitShort(face.Index1);
//Vert index BS 72 1 - based vertex index(see DXF doc)
Expand Down Expand Up @@ -2225,8 +2221,6 @@ private void writeVertex2D(Vertex2D vertex)

private void writeVertex(Vertex vertex)
{
this.writeCommonEntityData(vertex);

//Flags EC 70 NOT bit-pair-coded.
this._writer.WriteByte((byte)vertex.Flags);
//Point 3BD 10
Expand All @@ -2235,8 +2229,6 @@ private void writeVertex(Vertex vertex)

private void writeTolerance(Tolerance tolerance)
{
this.writeCommonEntityData(tolerance);

//R13 - R14 Only:
if (this.R13_14Only)
{
Expand Down

0 comments on commit e17cacb

Please sign in to comment.