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

DomCR / ACadSharp / 18679832337

21 Oct 2025 09:46AM UTC coverage: 77.883% (-0.2%) from 78.126%
18679832337

push

github

web-flow
Merge pull request #832 from DomCR/multileader-dxf

multileader dxf

6920 of 9695 branches covered (71.38%)

Branch coverage included in aggregate %.

341 of 429 new or added lines in 16 files covered. (79.49%)

77 existing lines in 8 files now uncovered.

26664 of 33426 relevant lines covered (79.77%)

110330.18 hits per line

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

0.0
/src/ACadSharp/Objects/MultiLeaderObjectContextData.StartEndPointPair.cs
1
using System;
2
using ACadSharp.Attributes;
3
using CSMath;
4

5
namespace ACadSharp.Objects
6
{
7
        public partial class MultiLeaderObjectContextData
8
        {
9
                /// <summary>
10
                /// Start/end point pairs
11
                /// 3BD        11        Start Point
12
                /// 3BD        12        End point
13
                /// </summary>
14
                public struct StartEndPointPair : ICloneable
15
                {
NEW
16
                        public StartEndPointPair(XYZ startPoint, XYZ endPoint) {
×
NEW
17
                                StartPoint = startPoint;
×
NEW
18
                                EndPoint = endPoint;
×
NEW
19
                        }
×
20

21
                        /// <summary>
22
                        /// Break start point
23
                        /// </summary>
24
                        [DxfCodeValue(12, 22, 32)]
NEW
25
                        public XYZ StartPoint { get; private set; }
×
26

27
                        /// <summary>
28
                        /// Break end point
29
                        /// </summary>
30
                        [DxfCodeValue(13, 23, 33)]
NEW
31
                        public XYZ EndPoint { get; private set; }
×
32

33
                        public object Clone()
NEW
34
                        {
×
NEW
35
                                return this.MemberwiseClone();
×
NEW
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