0809M5 Design Studio
Our Study Trip to London from May 6th to 11th included visits to the following offices:
David Chipperfield Architects, AKT, Allies and Morrison Architects, Foster + Partners, Grimshaw Architects, Zaha Hadid Architects, WilkinsonEyre Architects and KPF.
PREDRAČUN:
1. Lepenka 12kom., debljine 3mm = 12x180din = 2160din
+ 2 lepenke za krov objekta = 360din
2. Oho lepak, 10 kom. = 10x60din = 600din
3. Sečenje lepenke ( maksimalno ) = od 4000 do 6000din
_______________________________________________________________________
Suma
jeftinija varijanta = 7120din
skuplje varijanta = 9120din
_______________________________________________________________________
Po studentu od 445 do 570 din
Graduate Programme, Module: Design Studio M5 2009/10, 18 ECTS
Djordje Stojanović, Milutin Cerović, Ivana Petruševski.
In the coming term we will continue working on Versatilities agenda, yet we will shift the scale to focus toward truly buildable result at the end of the term.Studio will explore architectural means to activate one of the unused industrial warehouses at Port of Belgrade. Research into fabrication methods in conjunction with design techniques will be supported with now available funds for the prototype models at one-to-one scale. We will start with the associative design workshop based on the Grasshopper for Rhino 27.02-10.03.
students: Antonić Marko, Bosnjak Dušan, Golić Milica, […]
Projekat 2 Modul 6.1.1. Studio A profesor Zoran Lazovic
Option Explicit
‘——————————————————————————-
‘ Subroutine: Army HQ Pavilion
‘ Purpose: honeycomb study
‘ Author: Milutin Cerovic 2009
‘ www.4ofseven.com
‘——————————————————————————-
Call Main()
Sub Main()
Dim arrIsoCurves
Dim arrPoints
Dim arrPoints
Dim i,j
arrIsoCurves=Rhino.GetObjects (“Select Isocurves, in order one by one”)
ReDim arrPoints(UBound(arrIsoCurves))
DivNumber = Rhino.GetReal (“enter divide number”)
For i=0 To UBound(arrIsoCurves)
arrPoints(i)=Rhino.DivideCurve(arrIsoCurves(i),DivNumber,True)
Next
For i=0 To (UBound(arrIsoCurves)-1)Step 2
For j=0 To (DivNumber-2)
If j Mod 2 <> 0 Then
Rhino.addLine arrPoints(i)(j),arrPoints(i+1)(j+2)
Rhino.addLine arrPoints(i)(j),arrPoints(i+1)(j)
Rhino.addLine arrPoints(i+1)(j),arrPoints(i+2)(j)
End If
Next
Next
End Sub