DynamoVisualProgramming.ZeroTouchLibrary by Autodesk

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

 INurbsCurveEntity

using Autodesk.DesignScript.Runtime; using System; namespace Autodesk.DesignScript.Interfaces { [ExportToProtoGeometryClass] [DoNotPrintProperty(new string[] { "IsPeriodic", "IsRational" })] [SupressImportIntoVM] public interface INurbsCurveEntity : ICurveEntity, IGeometryEntity, IDesignScriptEntity, IDisposable, ITransformableEntity { int Degree { get; } bool IsPeriodic { get; } bool IsRational { get; } IPointEntity[] ControlPoints(); double[] Knots(); double[] Weights(); } }