DynamoVisualProgramming.ZeroTouchLibrary by Autodesk

<PackageReference Include="DynamoVisualProgramming.ZeroTouchLibrary" Version="0.9.0-beta" />

 IArcEntity

using Autodesk.DesignScript.Runtime; using System; namespace Autodesk.DesignScript.Interfaces { [SupressImportIntoVM] [ExportToProtoGeometryClass] [PrintParentProperty(new string[] { "Normal" })] public interface IArcEntity : ICurveEntity, IGeometryEntity, IDesignScriptEntity, IDisposable, ITransformableEntity { IPointEntity CenterPoint { get; } double Radius { get; } double StartAngle { get; } double SweepAngle { get; } } }