IConeEntity
                        public interface IConeEntity : ISolidEntity, ITopologyEntity, IGeometryEntity, IDesignScriptEntity, IDisposable, ITransformableEntity
                    
                    
                    
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; }
    }
}
            