• 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/HatchPattern.Line.cs
1
using ACadSharp.Attributes;
2
using CSMath;
3
using System.Collections.Generic;
4

5
namespace ACadSharp.Entities
6
{
7
        public partial class HatchPattern
8
        {
9
                public class Line
10
                {
11
                        /// <summary>
12
                        /// Pattern line angle.
13
                        /// </summary>
14
                        [DxfCodeValue(DxfReferenceType.IsAngle, 53)]
UNCOV
15
                        public double Angle { get; set; }
×
16

17
                        /// <summary>
18
                        /// Pattern line base point.
19
                        /// </summary>
20
                        [DxfCodeValue(43, 44)]
UNCOV
21
                        public XY BasePoint { get; set; }
×
22

23
                        /// <summary>
24
                        /// Line dashes.
25
                        /// </summary>
26
                        [DxfCodeValue(DxfReferenceType.Count, 79)]
27
                        [DxfCollectionCodeValue(49)]
UNCOV
28
                        public List<double> DashLengths { get; set; } = new List<double>();
×
29

30
                        /// <summary>
31
                        /// Pattern line offset.
32
                        /// </summary>
33
                        [DxfCodeValue(45, 46)]
UNCOV
34
                        public XY Offset { get; set; }
×
35

36
                        /// <summary>
37
                        /// Clones this line.
38
                        /// </summary>
39
                        /// <returns></returns>
40
                        public Line Clone()
41
                        {
×
42
                                Line clone = (Line)this.MemberwiseClone();
×
43
                                clone.DashLengths = new List<double>(this.DashLengths);
×
44
                                return clone;
×
45
                        }
×
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

© 2025 Coveralls, Inc