• 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/XLine.cs
1
using ACadSharp.Attributes;
2
using CSMath;
3

4
namespace ACadSharp.Entities
5
{
6
        /// <summary>
7
        /// Represents a <see cref="XLine"/> entity.
8
        /// </summary>
9
        /// <remarks>
10
        /// Object name <see cref="DxfFileToken.EntityXline"/> <br/>
11
        /// Dxf class name <see cref="DxfSubclassMarker.XLine"/>
12
        /// </remarks>
13
        [DxfName(DxfFileToken.EntityXline)]
14
        [DxfSubClass(DxfSubclassMarker.XLine)]
15
        public class XLine : Entity
16
        {
17
                /// <inheritdoc/>
18
                public override ObjectType ObjectType => ObjectType.XLINE;
×
19

20
                /// <inheritdoc/>
21
                public override string ObjectName => DxfFileToken.EntityXline;
×
22

23
                /// <inheritdoc/>
24
                public override string SubclassMarker => DxfSubclassMarker.XLine;
×
25

26
                /// <summary>
27
                /// First point(in WCS).
28
                /// </summary>
29
                [DxfCodeValue(10, 20, 30)]
30
                public XYZ FirstPoint { get; set; }
×
31

32
                /// <summary>
33
                /// Unit direction vector(in WCS).
34
                /// </summary>
35
                [DxfCodeValue(11, 21, 31)]
36
                public XYZ Direction { get; set; }
×
37

38
                /// <inheritdoc/>
39
                public override BoundingBox GetBoundingBox()
40
                {
×
41
                        return BoundingBox.Infinite;
×
42
                }
×
43
        }
44
}
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