Hi,
I trying to Build a rule where I have a Podium and a Tower over, for which I am trying to split a plot based on FAR and ground cover. But my building is splitting in two rather that coming one above each other.
My Code:
Tower(h)-->
extrude (world.y,h)
split(y){TowerFloorHt:Colorize}*
Podium(h)-->
extrude (world.y,h)
split(y){PodiumFloorHt:Colorize}*
Colorize -->
color ("#ffffff")
DevelopLot -->
case Zoning == "HRCommercial" : HRCommercialLot
else : OpenSpace
Lot -->
split(x) {'(0.6*GCover): Tower (((floor((SiteArea * MaxFAR)/(0.6*GCover* SiteArea))+(PodiumFloors))*TowerFloorHt))|'(1-(0.6*GCover)) : Podium (PodiumFloors*PodiumFloorHt)}
OpenSpace --> color("#77ff77")
I want to have enough control to be able to place the tower any place over the podium(eg. corner or center), which I am unable to do. Is there a way for me to have this kind of control over the placement of the tower and also controlling the FAR for tower and podium differently.
Thank you
A