Question

Simple solution to iterative Tiling


Badge +3
Simple solution to iterative Tiling

4 replies

Badge +3
I was lookin for a alternative to the Paralellprocessing solution and came up with a very simple one:

 

 

 

Create a counter to count the objects you want to tile and testit against a index, is the trick to creating a iterative tiler. (without use of parallel processing trick, see forum on this)

 

Tip: When building, connect loop at last possible instance.

 

Make all Tiler parameters user parameters, to pass them a level up.

 

 

 

 

 

Stuff the blocking transformer in  a embedded type custom transformer:

 

 

 

 

 

Max number of itereations, has to be same as number of objects to be tiled. Alas this is still manual...

 

 

 

Main bench with to sample datasets.

 

 

 

 

By creating an expression string you can do all kinds of tinling...

 

 

 

 

 

 

 

 

 

 

 

 
Badge +3
Result using radial tiling.

 

 

Badge +3
Badge
Nice Gio! Fresh approach to tiling. I have run into memory issues in the past using parallel processing on large datasets. This looks like it would circumvent those issues.

Reply