Files
speckle-sharp-host-apis/Speckle.Revit.Interfaces/IRevitCurve.cs
T
2024-06-06 09:03:39 +01:00

7 lines
137 B
C#

namespace Speckle.Revit2023.Interfaces;
public interface IRevitCurve
{
IRevitXYZ GetEndPoint(int index);
double Length { get; }
}