setting select status of NURBS cv

is there a way to set the select status of a NURBS cv?

for Bezier curves, we have the BezTriple object with the “selects” list for each point. but a NURBS point is just a list of 4-5 floats. where is the select status stored?

thx

A nurbs point should be a bezierpoint too :
http://www.zoo-logique.org/3D.Blender/scripts_python/API/Curve.CurNurb-class.html#__getitem__

hi jms, thanks for replying.

the problem with CurNurb’s getitem is, it returns a python list of 5 floats if it’s a NURBS cv. there’s no flag attribute named “sel” or “select” (not that i can find …).

in the case of Bezier curves, it works fine, because it returns a BezTriple objects instead of a list. the BezTriple objects has a list called “selects” that stores the select status of each point and its handles.

Interesting points! It needs to be printed and placed on the wall until you’ll learn them all.