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

DomCR / ACadSharp / 17974485665

24 Sep 2025 10:54AM UTC coverage: 78.33% (-0.1%) from 78.47%
17974485665

Pull #191

github

web-flow
Merge fcb7b06f9 into 3e0fc6cad
Pull Request #191: Solid3D entity

6745 of 9343 branches covered (72.19%)

Branch coverage included in aggregate %.

245 of 322 new or added lines in 11 files covered. (76.09%)

37 existing lines in 6 files now uncovered.

25985 of 32442 relevant lines covered (80.1%)

110351.68 hits per line

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

77.78
/src/ACadSharp/Entities/ModelerGeometry.cs
1
using ACadSharp.Attributes;
2
using CSMath;
3
using System.Collections.Generic;
4

5
namespace ACadSharp.Entities
6
{
7
        /// <summary>
8
        /// Represents a <see cref="ModelerGeometry"/> entity.
9
        /// </summary>
10
        [DxfSubClass(DxfSubclassMarker.ModelerGeometry)]
11
        public abstract partial class ModelerGeometry : Entity
12
        {
13
                public XYZ Point { get; set; }
129✔
14

15
                public List<Silhouette> Silhouettes { get; } = new();
1,101✔
16

17
                /// <inheritdoc/>
18
                public override string SubclassMarker => DxfSubclassMarker.ModelerGeometry;
15,810✔
19

20
                public List<Wire> Wires { get; } = new();
1,101✔
21

22
                /// <inheritdoc/>
23
                public override void ApplyTransform(Transform transform)
NEW
24
                {
×
NEW
25
                }
×
26

27
                /// <inheritdoc/>
28
                public override BoundingBox GetBoundingBox()
29
                {
3✔
30
                        return BoundingBox.Null;
3✔
31
                }
3✔
32
        }
33
}
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