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

DomCR / ACadSharp / 14223596880

02 Apr 2025 03:32PM UTC coverage: 75.482% (-0.9%) from 76.343%
14223596880

Pull #457

github

web-flow
Merge 8207ad8e0 into 04434c5d6
Pull Request #457: Geometric transform

5605 of 8152 branches covered (68.76%)

Branch coverage included in aggregate %.

264 of 713 new or added lines in 47 files covered. (37.03%)

283 existing lines in 15 files now uncovered.

22349 of 28882 relevant lines covered (77.38%)

72711.93 hits per line

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

37.5
/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
                        {
12
                                public override EdgeType Type => EdgeType.Line;
520✔
13

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

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

26
                                /// <inheritdoc/>
27
                                public override void ApplyTransform(Transform transform)
NEW
28
                                {
×
NEW
29
                                        throw new System.NotImplementedException();
×
30
                                }
31

32
                                /// <inheritdoc/>
33
                                public override BoundingBox GetBoundingBox()
34
                                {
×
35
                                        return BoundingBox.FromPoints([(XYZ)this.Start, (XYZ)this.End]);
×
36
                                }
×
37
                        }
38
                }
39
        }
40
}
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