A playground for University of Bologna Students and a 6-days seminar about digital tools.

Digital generative tools are a very important part of architectural education. Andrew Kudless during his conference at SimAE was telling about chinese traditional woodcraftsmen: they spend their first two years of apprentice in making their own tools. Today, we have a large pool of digital ready made tools, built to respond to more or less specific problems or tasks, while keeping a level of flexibility and personalization. The majority of these tools have hidden capabilities, which can only be accessed bypassing the conventional interface and getting close to the machine logic of programming or building parametric components which generate shapes. Thus, seriality, differentiation, complexity can be implemented in architectural projects through code, in order to exploit the power of algorithmic based complex systems which are the basis of biological systems.


But, before going through such complexity, we must start with simple tasks and simple rules. Before playing seriously we need practice. This is the playground where a bunch of students will start to practice, a pool where they will share their results and questions. Maybe the stuff here that will be posted will seem obvious or naive to the navigated code-monkey, but, as I mentioned before, we all start from the basics and this is intended as a place to start. However, any comment and contribution is appreciated.

Playground is open, let's play! _ Alessio

4.2.09

( || )







Good evening, 
this is my simple attempt, a sort of extension of what we did the first day. I tried to understand the principles of Reichstag's dome by Norman Foster and i generated curves that replicate that form.
I did other attempts changing nothing but the initial polygon or its position on the ground.
Here the code.


Option Explicit
'Script written by
'Script version martedì 3 febbraio 2009 23.47.50

Call Main()
Sub Main()

        Dim strPoly = RhinoGetObject("select polygons",4)
        Dim i, strCrv, j

        if isNull (strPoly) Then exit sub

       For i=0 to 50 Step 0.5
               Call Rhino.MoveObject(strPoly, array(0,0,0), array(0,0,2.5-i/20))
               Call Rhino.RotateObject(strPoly,  array(0,0,0), i*1.8, true)
               strCrv = Rhino.ScaleObject (strPoly, array(0,0,0), array(1+i/1000, 1+i/1000, 1))
               call Rhino.ObjectColor(strCrv, RGB (i*255/50, 255-(i*255/50), 0))
       next

       For j=0 to 30 Step 0.5
               call Rhino.MoveObject(strPoly, array(0,0,0), array(0,0,-j/7))
               call Rhino.RotateObject(strPoly, array(0,0,0), i*1.8, true)
               strCrv= Rhino.ScaleObject(strPoly, array(0,0,0), array(1+(0.05-(j/600)), 1+(0.05-(j/600)),1))
               call Rhino.ObjectColor(strCrv, RGB (255-(j*255/30), j*255/30, 0))
        next

End Sub
       


No comments:

Post a Comment