INurbsCurveEntity
public interface INurbsCurveEntity : ICurveEntity, IGeometryEntity, IDesignScriptEntity, IDisposable, ITransformableEntity
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();
}
}