7 lines
137 B
C#
7 lines
137 B
C#
namespace Speckle.Revit2023.Interfaces;
|
|
|
|
public interface IRevitCurve
|
|
{
|
|
IRevitXYZ GetEndPoint(int index);
|
|
double Length { get; }
|
|
} |