Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Solid3D entity #191

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/ACadSharp/Entities/Solid3D.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
using ACadSharp.Attributes;
using System.Reflection;
using System;
using CSMath;

namespace ACadSharp.Entities
{
/// <summary>
/// Represents a <see cref="Solid"/> entity.
/// Represents a <see cref="Solid3D"/> entity.
/// </summary>
/// <remarks>
/// Object name <see cref="DxfFileToken.Entity3DSolid"/> <br/>
Expand All @@ -28,5 +30,9 @@ public override BoundingBox GetBoundingBox()
{
return BoundingBox.Null;
}

//70 Modeler format version number(currently = 1)
//1 Proprietary data(multiple lines < 255 characters each)
//3 Additional lines of proprietary data(if previous group 1 string is greater than 255 characters) (optional)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ private void writeEntity(Entity entity)
{
case UnknownEntity:
case AttributeEntity:
case Solid3D:
case Mesh:
this.notify($"Entity type not implemented {entity.GetType().FullName}", NotificationType.NotImplemented);
return;
Expand Down
Loading