Custom rhino

Hi all. I’m customizing rhino and I will have a few questions that I will keep in this thread.

First. How do i make a shortcut to toggle the surface isocurves visibility in the viewport?

How about Panels (eg. from menu) - Display and then (un)check “Surface Isocurves”?
Or do you need a real keyboard shortcut?

Hello mikolaj. I need a real shortcut. I work with isocurves on then I want to quickly toggle to a plain model to see how the surface looks. I could only see that checkbox that you show. No command entry to do it?

And what if you are in Wireframe or Ghosted? Perhaps switching to another display mode would be better to analyze the surface?

I’m not sure if this is possible with a regular macro in regard to display mode. Someone else will know for sure.
I can think of macro in regard to object properties:

-Properties
pause
Object
ShowIsocurves
No
EnterEnd

But there is no toggle so you need another one with “yes”.

Here is a thread using a similar question.

c.

1 Like

I will test it by switching display mode.

The script for object properties will not suit me because I would need to always select all surfaces first and it would be quicker to select checkbox

I agree but just in case, to select automatically…

!SetRedrawOff
SelSrf
SelPolySrf
-Properties
Object
ShowIsocurves
No
EnterEnd
SelNone
SetRedrawOn

Thank you. i will try it