04 January 2011

P55 UI_01

Following one of many tutorial in Processing done by Jose Sanchez I did my first code for a basic UI (user interface). It's so funny, thx Jose!

download:
library (extract this zip. file into your Processing/Libraries folder)
control p5 library
code
ControlP5_jan04d.pde

aast, International workshop Tokyo, 14-19 March 2011



aast, Advanced Architecture Settimo Tokyo, is a series of events ideated by CASARTARC, an architectural association in Italy, (with Andrea Graziano and Davide Del Giudice) to link the host cities of the UIA InternationalCongress of Architecture in 2008 and 2011: Turin and Tokyo.As the joint event of ALGODE TOKYO 2011 (http://news-sv.aij.or.jp/algode/index.html) the international symposium on Algorithmic design held byAIJ (Architectural Institute of Japan), Casartarc is offering the aastinternational student workshop in Tokyo on the theme:Generative Space for Tokyo: innovative use of wood with algorithmic design.

Objectives

The aast workshop aims at offering a unique, hands-on experiencefor architectural students to research and experiment in the field ofGenerative Architectural Technology and Computational Design applied toDigital Fabrication.Participants will be able to explore new concepts for architecture andurban space by setting up adaptable design processes and seamlesslyconnect them to the real construction of a 1:1 scale prototype for a temporary space in Tokyo. Computational design techniques and realfabrication processes will be approached and explored at the same timethrough the use of the most traditional of the building materials in Japaneseculture: wood. In traditional construction, the Japanese carpentersemployed their knowledge (passed on from generation to generation) to usewood as a construction material, solving joint problems in a way to createlong lasting structures.Now algorithmic programs can help the designer to explore several designprocesses at once, to generate new environments and to create adaptivesolutions for a particular spatial concept.Digital fabrication processes, such as CNC cutting can deal with extremelycomplicated but algorithmically controlled work, making it possible to usethis sustainable and natural material in innovative ways. By joining smaller,machine-cut pieces, according to an assembly rule to generate a whole it isthus possible to innovate along the Japanese tradition of creating patternsas a space-defining interface. Tradition and innovation, digital design andreal fabrication will be the topics of this workshop, with the aim to advancetheoretical research as well as potential practical applications of algorithmicdesign in architecture and urban design.

http://aast09.wordpress.com/

for more info see the flyer or send a mail to:

lorenaATalessiostudio.com, cristina.edizioniATtucanoviaggi.com

20 December 2010

Uneven Subdivision 01_Co-de-iT/////////////////////////


Playing with Uneven Subdivision, a grasshopper definition created by Co-de-iT (A.Graziano&A.Erioli).
You can find this script and more stuff at this link: www.co-de-it.com/wordpress/code/grasshopper-code


19 December 2010

Plug>it Grasshopper ws_Rome 26-30 Jan 2011


Davide del Giudice invited to lecture to Plug>it, Grasshopper workshop, Rome.

14 December 2010

Peter de Joung attractor 02//////////////////////////////////


Peter de Joung attractor scripted in Processing and imported in Gh via UDP receiver.
A cloud of 3D points is created via an Autobake VB custom script.

Download gh_udpreceiver_petrdejoung_Co-de-iT_GH08033.rar
----------------------------------------------------------------------------------------------------

Author: davide del giudice
blog: http://madeincalifornia.blogspot.com/

web: http://www.co-de-it.com/
----------------------------------------------------------------------------------------------------
UDP receiver component created by:
Luis Fraguada LAN
www.livearchitecture.net

----------------------------------------------------------------------------------------------------
Autobake VB script
modified and simplify from an origianl code of http://www.thediscontinuum.net/

----------------------------------------------------------------------------------------------------
© Co-de-iT 2010
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
Grasshopper 3dPoint Autobake Code: ----------------------------------------------------------------------------------------------------
Private Sub RunScript(ByVal x As List(Of On3dPoint), ByRef A As Object)
Dim point As Object
For j As Integer = 0 To x.count - 1
point = x(j) doc.AddPointObject(point)
Next
A = Nothing End Sub