Notifications
Clear all

[Closed] loop/quadrify all objects

any ideas why the following script

for o in $* do (PolyToolsModeling.Quadrify false false)

does not work as expected and how to make it work?

PolyToolsModeling.Quadrify false false

on selection works np…

6 Replies

PolyToolsModeling.Quadrify false false

mmmmmmm seems to only work on one object at a time perhaps denisT or Bobo might be able to clear things up, it’s stumped me as well

I don’t have max2010 and up, so I can’t test it, but try this:
(may be the object have to be selected)

for o in geometry do
(
select o
PolyToolsModeling.Quadrify false false
)

1 Reply
(@lucpet)
Joined: 11 months ago

Posts: 0

ok I understand now

Hi,

if you only want it to selected object you can do

for o in selection do (
 stuff
 )
for o in $* do (select o; PolyToolsModeling.Quadrify false false)
---
cursel = getcurrentselection()
for o in cursel do (select o; PolyToolsModeling.Quadrify false false)
select cursel

*forgot to refresh the page … but yes like miauu said…

many thanks, much appreciated