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

DomCR / ACadSharp / 17978770450

24 Sep 2025 01:47PM UTC coverage: 78.346% (-0.07%) from 78.418%
17978770450

push

github

web-flow
Merge pull request #191 from DomCR/Solid3D-Entity

Solid3D entity

6746 of 9343 branches covered (72.2%)

Branch coverage included in aggregate %.

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

6 existing lines in 3 files now uncovered.

25991 of 32442 relevant lines covered (80.12%)

110353.01 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