Skip to content

Commit

Permalink
files fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DomCR committed Mar 14, 2024
1 parent f5cd32c commit 94df4cf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ACadSharp/IO/DWG/DwgStreamReaders/DwgObjectReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4600,7 +4600,7 @@ private CadTemplate readGroup()
private CadTemplate readMLStyle()
{
MLineStyle mlineStyle = new MLineStyle();
CadMLStyleTemplate template = new CadMLStyleTemplate(mlineStyle);
CadMLineStyleTemplate template = new CadMLineStyleTemplate(mlineStyle);

this.readCommonNonEntityData(template);

Expand Down Expand Up @@ -4652,7 +4652,7 @@ 1024 512
for (int i = 0; i < nlines; ++i)
{
MLineStyle.Element element = new MLineStyle.Element();
CadMLStyleTemplate.ElementTemplate elementTemplate = new CadMLStyleTemplate.ElementTemplate(element);
CadMLineStyleTemplate.ElementTemplate elementTemplate = new CadMLineStyleTemplate.ElementTemplate(element);

//Offset BD Offset of this segment
element.Offset = this._objectReader.ReadBitDouble();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

namespace ACadSharp.IO.Templates
{
internal class CadMLStyleTemplate : CadTemplate<MLineStyle>
internal class CadMLineStyleTemplate : CadTemplate<MLineStyle>
{
public class ElementTemplate : ICadObjectTemplate
{
Expand Down Expand Up @@ -54,7 +54,7 @@ public void Build(CadDocumentBuilder builder)

public List<ElementTemplate> ElementTemplates { get; set; } = new List<ElementTemplate>();

public CadMLStyleTemplate(MLineStyle mlStyle) : base(mlStyle) { }
public CadMLineStyleTemplate(MLineStyle mlStyle) : base(mlStyle) { }

public override void Build(CadDocumentBuilder builder)
{
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 94df4cf

Please sign in to comment.