2007-06-12
03:15 PM
- last edited on
2023-05-24
12:44 PM
by
Rubia Torres
2007-06-12 05:34 PM
FOR i = 1 TO blocks_across
FOR j = 1 TO blocks_up
Prism_ 10, dp,
0, 0, 15,
wd, 0, 15,
wd, ht, 15,
0, ht, 15,
0, 0, -1,
tk, tk, 15,
wd-tk, tk, 15,
wd-tk, ht-tk, 15,
tk, ht-tk, 15,
tk, tk, -1
addy ht + mortar_jt
NEXT j
addx wd + mortar_jt
NEXT i
You naturally need to initialize all the variables. In the example: wd, ht, dp = width, height, depth of block. For the mortar I would use a single Prism_ statement with holes defined by PUT statements in the above loop.2007-06-12 06:15 PM
2007-06-13 04:08 PM