2009-10-30 09:54 PM - last edited on 2023-05-24 12:39 PM by Rubia Torres
2009-10-30 10:22 PM
2009-10-30 11:27 PM
jshuether wrote:If you want an object with that kind of behaviour, the Modular Joinery object may be what you're after. It will allow you to configure any array of doors, windows, and panels (including nested frames).
I have an array set up to define a grid of windows. The array contains the horizontal widths and vertical width. I would like to define what each window is in the grid from a list of values.
2009-10-31 05:22 AM
2009-10-31 10:50 AM
jshuether wrote:Distribution is managed by Graphisoft UK. Your ArchiCAD reseller should be able to source it for you from them.
I am curious about the Modular Joinery object; I'm sure it is everything I need and more; however, I'm not sure how to acquire the object.
2009-10-31 09:22 PM
2009-11-01 03:47 AM
2009-11-01 11:02 PM
2009-11-02 01:46 PM
2009-11-02 03:05 PM
=""
PARAMETERS window
=""
NEXT Q
NEXT I
ENDIF
DIM xx0 [][]
FOR I=1 TO H
FOR Q=1 TO V
xx0
=10*I+Q
PARAMETERS xx0
=10*I+Q
NEXT Q
NEXT I
VALUES "xx" xx0 ! code of grids
VALUES "type" "fixed", "casement", "awning"
wtype=type
hh=INT(xx/10)
vv=xx-hh*10
window [hh][vv]=wtype
PARAMETERS window [hh][vv]=wtype
----------------------------------------------------------------------
You have to create the parameters: h, v, xx, type, window
Cheers,