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

DomCR / ACadSharp / 17737836230

15 Sep 2025 03:12PM UTC coverage: 2.092% (-76.2%) from 78.245%
17737836230

push

github

web-flow
Merge pull request #790 from DomCR/addflag-refactor

addflag refactor

141 of 9225 branches covered (1.53%)

Branch coverage included in aggregate %.

0 of 93 new or added lines in 10 files covered. (0.0%)

24910 existing lines in 372 files now uncovered.

724 of 32119 relevant lines covered (2.25%)

5.76 hits per line

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

0.0
/src/ACadSharp/Entities/Hatch.BoundaryPath.Line.cs
1
using ACadSharp.Attributes;
2
using CSMath;
3

4
namespace ACadSharp.Entities
5
{
6
        public partial class Hatch
7
        {
8
                public partial class BoundaryPath
9
                {
10
                        public class Line : Edge
11
                        {
UNCOV
12
                                public override EdgeType Type => EdgeType.Line;
×
13

14
                                /// <summary>
15
                                /// Start point (in OCS)
16
                                /// </summary>
17
                                [DxfCodeValue(10, 20)]
UNCOV
18
                                public XY Start { get; set; }
×
19

20
                                /// <summary>
21
                                /// Endpoint (in OCS)
22
                                /// </summary>
23
                                [DxfCodeValue(11, 21)]
UNCOV
24
                                public XY End { get; set; }
×
25

26
                                /// <inheritdoc/>
27
                                public override Entity ToEntity()
28
                                {
×
29
                                        return new Entities.Line(this.Start, this.End);
×
30
                                }
×
31
                                /// <inheritdoc/>
32
                                public override void ApplyTransform(Transform transform)
33
                                {
×
34
                                        throw new System.NotImplementedException();
×
35
                                }
36

37
                                /// <inheritdoc/>
38
                                public override BoundingBox GetBoundingBox()
39
                                {
×
40
                                        return BoundingBox.FromPoints([(XYZ)this.Start, (XYZ)this.End]);
×
41
                                }
×
42
                        }
43
                }
44
        }
45
}
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