rera de Arquitectura CEM | presenta la cordial invitación al Curso de Diseño Computacional a realizarse en nuestros laboratorios de Arquitectura y Diseño Industrial del Campus Estado de México.
Fecha: jueves 21, viernes 22 de 18: a 22:00 Hrs y sábado 23 de 8:00 a 15:00 Hrs febrero 2013. 15 Horas.
El taller está orientado a estudiantes y profesionales de la Arquitectura, Arte, el Diseño e Ingeniería.
COSTO:
Alumnos Tec o EXATEC con una cuota de $2000.00 pesos.* Estudiantes EXTERNOS y profesores TEC $3000.00*, Estudiantes de posgrado externos $3800.00* y Profesionales externos $4250.00 pesos.*
OBJETIVO GENERAL:
Alfabetización sobre lectura y escritura de herramientas computacionales para el desarrollo de la Arquitectura, Diseño e Ingeniería.
Objetivos específicos:
1. Comprenderá los conceptos metodológicos del Diseño Computacional y generativo.
2. Aplicará las metodologías en el diseño, análisis y despiece de una cubierta (celosía, muro, losa, fachada o mobiliario) con base en un espacio existente en el campus.
3. Desarrollará los conceptos de programación orientada a objetos (POO Intermedia)
4. Generará algoritmos y análisis en Grasshopper sobre el ejemplo de praxis.
5. Desarrollo de documentación y presentación de resultados.
6. Fabricación del objeto, escala por definir.
Requisitos: Conocimiento de alguna plataforma CAD/CAM/CAE.
Profesor:
Arq. David Hernández Melgarejo.
http://bioarchitecturestudio.wordpress.com
Mayor información:
Kathrin Schröter, Dipl.-Ing./Arch. (D)
Directora de la Carrera de Arquitectura e Ingeniería Civil
Escuela de Diseño, Ingeniería y Arquitectura
Campus Estado de México
TEC DE MONTERREY
Tel.: (52/55) 5864 5555 Ext. 5685 o 5750
Enlace intercampus:80.236.5685
Fax: (52/55) 5864 5319
kschroter@itesm.mx
www.itesm.mx
…
g commands. In addition, this workshop will give students a functional understanding of Grasshopper and Parametric design; this will allow them to build on this understanding into more advanced projects of their own. The class also covers information on fabrication techniques with RP or laser machines and optimization and fabrication using RhinoCAM for CNC machines.
Details...
Date: May 16 - 20, 2016
Time: 8:00 am - 5:00 pm (EST)*
*Note: All times listed are Eastern (Miami) time zone
Location: McNeel Miami1538 NW 89th CourtMiami, FL 33172United States…
r > messy
calculate where the lines begin and where they break and send those points.
otherwise, if you want to send all the points make a new global string say
String forGH=""; //generate empty string
then under the line where you draw the crack <point (x1,y1)>
write forGH+="{"+str(x1)+","+str(y1_+",0}"+"&";
so forGH will be a giant string var, that has all your points in the form of {x1,y1,0}&{x2,y2,0)&.....
make a:
void keyPressed(){
if key='O'{
sendStringToGh();
}
}
void sendStringToGh(){
... something like
<new osc message.add (forGH);>
<oscmessage.send();>
}
this way when you press capital O on your keyboard it sends the string to GH
at grasshopper, get the data and feed them to a Split String component, with a panel that contains "&" the character that separates your points.
this will produce a list of points recognizable by GH. if you connect a point parameter their it will produce points, or you could add a circle, or sphere, with your points as centers.
see if it works this way. otherwise calculate the endpoints and send lines with a similar way. you will just need another separation character like
stringtoGH+=startpoint1 & endpoint1 * startpoint2 & endpoint2 *
hope it helps
constantinos
…
, (desde un viejo archivo 3d),
con estos viejos maqueta-arquitectura.
(Mi idea era primero una herramientas de paneles, y después de eso, un módulo de 3D en cada panel.
Pero no puedo encontrar la manera de panel de la malla (...... o es que uno multi-superficie?).
Los archivos 3D se importa de mi equipo también, pero a partir de 3D Sketchup o 3D Studio Max.
Exportados a Rhino, por sus paredes paneladas de herramientas.
Sí, tengo algunos sketchs, lo que estoy buscando.
Aquí hay algunos sketchs.
Gracias.
Mvg
Claudio…
rom Object", "Obj2Col", "Extract the colour a referenced object is drawn in", "Display", "Colour") End Sub
Public Shared ReadOnly Id As Guid = New Guid("{9BD61B9C-C186-4CC9-8B91-C63829563997}") Public Overrides ReadOnly Property ComponentGuid As Guid Get Return Id End Get End Property Public Overrides ReadOnly Property Exposure As GH_Exposure Get Return GH_Exposure.primary End Get End Property
Protected Overrides Sub RegisterInputParams(pManager As GH_InputParamManager) pManager.AddGeometryParameter("Object", "O", "Object to examine", GH_ParamAccess.item) End Sub Protected Overrides Sub RegisterOutputParams(pManager As GH_OutputParamManager) pManager.AddColourParameter("Object", "O", "Object colour", GH_ParamAccess.item) pManager.AddColourParameter("Display", "D", "Display colour", GH_ParamAccess.item) End Sub
Protected Overrides Sub SolveInstance(DA As IGH_DataAccess) Dim geo As IGH_GeometricGoo = Nothing If (Not DA.GetData(0, geo)) Then Return
If (Not geo.IsReferencedGeometry) Then AddRuntimeMessage(GH_RuntimeMessageLevel.Warning, "Geometry is not referenced from Rhino") DA.SetData(0, Color.Black) DA.SetData(1, Color.Black) Return End If
Dim id As Guid = geo.ReferenceID Dim doc As Rhino.RhinoDoc = Rhino.RhinoDoc.ActiveDoc Dim obj As RhinoObject = doc.Objects.Find(id) If (obj Is Nothing) Then AddRuntimeMessage(GH_RuntimeMessageLevel.Warning, "Object could not be found in the current Rhino document") DA.SetData(0, Color.Black) DA.SetData(1, Color.Black) Return End If
DA.SetData(0, obj.Attributes.ObjectColor) DA.SetData(1, obj.Attributes.DrawColor(doc)) End Sub End Class…
Added by David Rutten at 6:12am on February 16, 2016
ing "NERVOUS SYSTEM GETS UNGRIDDED: A NEW SERIES OF COLORING BOOKS AND NOTEBOOKS"
http://n-e-r-v-o-u-s.com/blog/?p=7323
The script uses Sandbox plugin for closed polylines topology, Human for drawing curves, Bifocals to show the names of component, Anemone for generating some Voronoi. I got Grasshopper message that I did too much Voronoi !!!
here a first render with no inflation
…