DynamoVisualProgramming.ZeroTouchLibrary by Autodesk

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

 IConeEntity

using Autodesk.DesignScript.Runtime; using System; namespace Autodesk.DesignScript.Interfaces { [ExportToProtoGeometryClass] [SupressImportIntoVM] 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; } } }