• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

DomCR / ACadSharp / 20244298837

15 Dec 2025 07:08PM UTC coverage: 77.69% (-0.2%) from 77.847%
20244298837

push

github

web-flow
Merge pull request #919 from DomCR/image-reactor-fix

Image reactors

7578 of 10571 branches covered (71.69%)

Branch coverage included in aggregate %.

50 of 53 new or added lines in 9 files covered. (94.34%)

131 existing lines in 33 files now uncovered.

28098 of 35350 relevant lines covered (79.49%)

161916.85 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

58.33
/src/ACadSharp/Entities/ModelerGeometry.cs
1
using ACadSharp.Attributes;
2
using CSMath;
3
using System;
4
using System.Collections.Generic;
5
using System.Text;
6

7
namespace ACadSharp.Entities
8
{
9
        /// <summary>
10
        /// Represents a <see cref="ModelerGeometry"/> entity.
11
        /// </summary>
12
        [DxfSubClass(DxfSubclassMarker.ModelerGeometry)]
13
        public abstract partial class ModelerGeometry : Entity
14
        {
15
                public XYZ Point { get; set; }
123✔
16

17
                public List<Silhouette> Silhouettes { get; } = new();
1,128✔
18

19
                /// <inheritdoc/>
20
                public override string SubclassMarker => DxfSubclassMarker.ModelerGeometry;
9,000✔
21

22
                public List<Wire> Wires { get; } = new();
1,128✔
23

24
                [DxfCodeValue(2)]
25
                internal Guid Guid { get; set; }
240✔
26

27
                /// <summary>
28
                /// Gets or sets the modeler format version used in the drawing.
29
                /// </summary>
30
                [DxfCodeValue(70)]
31
                public short ModelerFormatVersion { get; set; }
489✔
32

33
                [DxfCodeValue(1)]
34
                //[DxfCodeValue(3)]
35
                public StringBuilder ProprietaryData { get; } = new();
45,488✔
36

37
                /// <inheritdoc/>
38
                public override void ApplyTransform(Transform transform)
39
                {
×
40
                }
×
41

42
                /// <inheritdoc/>
43
                public override BoundingBox GetBoundingBox()
UNCOV
44
                {
×
UNCOV
45
                        return BoundingBox.Null;
×
UNCOV
46
                }
×
47
        }
48
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc