Curve piping properties

Hi All,

It would be possible to set other default values for “convert curves to pipe meshes”?

nothing? it is impossible to do this?

as far as I understand, this topic is about render mesh modifier:

https://docs.mcneel.com/rhino/8/help/en-us/index.htm#properties/curvepiping.htm?Highlight=curve%20piping%20properties

you can set a macro with the wanted properties.
the macro will start with

-_properties _curvePiping

thanks @Tom_P

then via macro :+1:

the initial part for the indicated macro works well

immagine

while for these options using the commands with
_ underscore returns unknown command

(language from it-it to en-us)

rs.Command(“-_properties _curvePiping _captype _flat”, False) <not work “_flat”>

Hi -

How about

-_Properties _CurvePiping _CapType=Flat _EnterEnd

-wim

Hi @wim

already tried as shown but it doesn’t work.
I could be wrong, but from the functioning found in the latest Rh8 update the correct syntax in Italian is this:

rs.Command("-_properties _curvePiping _captype nessuno", False)
OR
rs.Command("-_properties _curvePiping _captype piatto", False)

in these two cases both work, even just the part involved in Italian, without the need for an underscore.

but if I change the values by putting flat / _flat or _CapType=Flat / _CapType=_Flat none of this works.
(Maybe everything works fine with the English version.)