Hi @dale
How to get Udegree and Udegree values from nurbs surface ??
-Sarath
Hi @Sarath_Kithiyon,
I’ve moved this to a new topic.
If you are using C++, then use ON_Surface::Degree.
– Dale
HI @dale
Thanks … but I’m working with C#. There is any other way to get Udegree and Vdegree vlaues
-Sarath
Use Rhino.Geometry.Surface.Degree.
var degree_u = surface.Degree(0);
var degree_v = surface.Degree(1);
– Dale