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

DomCR / ACadSharp / 14214082189

02 Apr 2025 07:34AM UTC coverage: 75.523% (-0.8%) from 76.343%
14214082189

Pull #457

github

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

5606 of 8150 branches covered (68.79%)

Branch coverage included in aggregate %.

282 of 716 new or added lines in 47 files covered. (39.39%)

318 existing lines in 23 files now uncovered.

22348 of 28864 relevant lines covered (77.43%)

72757.24 hits per line

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

0.0
/src/ACadSharp/Entities/Hatch.BoundaryPath.Edge.cs
1
using CSMath;
2

3
namespace ACadSharp.Entities
4
{
5
        public partial class Hatch
6
        {
7
                /// <summary>
8
                /// Defines a hatch boundary.
9
                /// </summary>
10
                public partial class BoundaryPath
11
                {
12
                        public enum EdgeType
13
                        {
14
                                /// <remarks>
15
                                /// Not included in the documentation.
16
                                /// </remarks>
17
                                Polyline = 0,
18
                                Line = 1,
19
                                CircularArc = 2,
20
                                EllipticArc = 3,
21
                                Spline = 4,
22
                        }
23

24
                        public abstract class Edge : IGeometricEntity
25
                        {
26
                                /// <summary>
27
                                /// Edge type.
28
                                /// </summary>
29
                                public abstract EdgeType Type { get; }
30

31
                                /// <summary>
32
                                /// Creates a new object that is a copy of the current instance.
33
                                /// </summary>
34
                                /// <returns></returns>
35
                                public Edge Clone()
UNCOV
36
                                {
×
UNCOV
37
                                        return (Edge)this.MemberwiseClone();
×
UNCOV
38
                                }
×
39

40
                                /// <inheritdoc/>
41
                                public abstract BoundingBox GetBoundingBox();
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