DynamoVisualProgramming.ZeroTouchLibrary by Autodesk

<PackageReference Include="DynamoVisualProgramming.ZeroTouchLibrary" Version="0.7.5.1" />

 IConeEntity

using Autodesk.DesignScript.Runtime; using System; namespace Autodesk.DesignScript.Interfaces { [SupressImportIntoVM] [ExportToProtoGeometryClass] public interface IConeEntity : ISolidEntity, ITopologyEntity, IGeometryEntity, IDesignScriptEntity, IDisposable, ITransformableEntity { IPointEntity StartPoint { get; } IPointEntity EndPoint { get; } double RadiusRatio { get; } double StartRadius { get; } double EndRadius { get; } double Height { get; } } }