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

DomCR / ACadSharp / 12905761471

22 Jan 2025 10:03AM UTC coverage: 2.0% (-74.0%) from 75.963%
12905761471

push

github

DomCR
version 1.0.6

104 of 7676 branches covered (1.35%)

Branch coverage included in aggregate %.

590 of 27024 relevant lines covered (2.18%)

5.13 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)]
15
                        public double Angle { get; set; }
×
16

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

23
                        /// <summary>
24
                        /// Pattern line offset
25
                        /// </summary>
26
                        [DxfCodeValue(45, 46)]
27
                        public XY Offset { get; set; }
×
28

29
                        public List<double> DashLengths { get; set; } = new List<double>();
×
30

31
                        public Line Clone()
32
                        {
×
33
                                Line clone = (Line)this.MemberwiseClone();
×
34
                                clone.DashLengths = new List<double>(this.DashLengths);
×
35
                                return clone;
×
36
                        }
×
37
                }
38
        }
39
}
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