How to select extreme control points?

Hi,
Is there a command or script to select the end and starting control points of selected curves?

Hi Joaquin -
! _SetRedrawOff _SelU NextU NextU PrevU InvertPt _SetRedrawOn

for a surfrace:

! _SetRedrawOff _SelU SelV NextU NextU PrevU NextV NextV PrevV Invertpt _SetRedrawOn

Of course if other objects have points showing, this will not work well - if that is the case, a script is needed, I guess.

-Pascal

1 Like

Thanks a lot Pascal!
That was fast!

Joaquín

@laborda - see if this is a bit more versatile -

To use the Python script use RunPythonScript, or a macro:

_-RunPythonScript "Full path to py file inside double-quotes"

-Pascal