IEllipseEntity
public interface IEllipseEntity : ICurveEntity, IGeometryEntity, IDesignScriptEntity, IDisposable, ITransformableEntity
using Autodesk.DesignScript.Runtime;
using System;
namespace Autodesk.DesignScript.Interfaces
{
[PrintParentProperty(new string[] {
"Normal"
})]
[SupressImportIntoVM]
[ExportToProtoGeometryClass]
public interface IEllipseEntity : ICurveEntity, IGeometryEntity, IDesignScriptEntity, IDisposable, ITransformableEntity
{
IPointEntity CenterPoint { get; }
IVectorEntity MajorAxis { get; }
IVectorEntity MinorAxis { get; }
}
}