DynamoVisualProgramming.ZeroTouchLibrary by Autodesk

<PackageReference Include="DynamoVisualProgramming.ZeroTouchLibrary" Version="1.0.0-beta1" />

 IPolygonEntity

using Autodesk.DesignScript.Runtime; using System; namespace Autodesk.DesignScript.Interfaces { [SupressImportIntoVM] [ExportToProtoGeometryClass] [DoNotPrintProperty(new string[] { "PlaneDeviation" })] public interface IPolygonEntity : IPolyCurveEntity, ICurveEntity, IGeometryEntity, IDesignScriptEntity, IDisposable, ITransformableEntity { IPointEntity[] Points { get; } double PlaneDeviation { get; } IPointEntity[] Corners(); IPointEntity Center(); IPointEntity[] SelfIntersections(); bool ContainmentTest(IPointEntity point); } }