Profile


Name
FindThem
ID
105346
Shared with
Public
Parent
FindIt
Children
None
Created on
January 16, 2022 at 16:41 PM UTC
Updated on
January 16, 2022 at 16:41 PM UTC
Description

FindThem attempts to get the symmetrics close to each other and back in view.

Best for


Code


--by Bruno Kestemont, LociOiling, jeff101 and BootsMcGraw --used to find the monomers in symmetric puzzles segs = structure.GetCount () symcnt = structure.GetSymCount () if symcnt > 0 then for sym = 1, symcnt do band.AddBetweenSegments ( 1, 1, nil, nil, sym ) band.AddBetweenSegments ( segs, segs, nil, nil, sym ) end end ui.CenterViewport ( segs / 2 ) freeze.FreezeAll() structure.WiggleAll(2) freeze.UnfreezeAll () ui.CenterViewport ( segs / 2 ) band.DeleteAll()

Comments


Bruno Kestemont Lv 1

In designing symmetric puzzles, monomer units temp to get out of view. This recipe centers them all in the view.
Warning: If you want to keep the complex structure between units, use FindIt instead.