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

DomCR / ACadSharp / 17971803124

24 Sep 2025 09:02AM UTC coverage: 75.575% (-2.9%) from 78.47%
17971803124

Pull #191

github

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

6490 of 9325 branches covered (69.6%)

Branch coverage included in aggregate %.

43 of 319 new or added lines in 10 files covered. (13.48%)

756 existing lines in 15 files now uncovered.

25073 of 32439 relevant lines covered (77.29%)

107448.21 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; }
15✔
14

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

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

20
                public List<Wire> Wires { get; } = new();
18✔
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