Skip to content

Commit

Permalink
ignore untested entities
Browse files Browse the repository at this point in the history
  • Loading branch information
DomCR committed Aug 25, 2023
1 parent 95603a2 commit 090c6f0
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using CSMath;
using System;
using System.Linq;
using System.Security.Cryptography;

namespace ACadSharp.IO.DXF
{
Expand All @@ -15,6 +14,12 @@ protected void writeEntity<T>(T entity)
switch (entity)
{
case Hatch:
case Leader:
case Mesh:
case Ray:
case Shape:
case Solid3D:
case XLine:
this.notify($"Entity type not implemented : {entity.GetType().FullName}", NotificationType.NotImplemented);
return;
}
Expand Down

0 comments on commit 090c6f0

Please sign in to comment.