There are a couple of experiments in different schools about organizing free-form surfaces (walls here) with a composition of modular elements (bricks). Even though they created robots to make such brick walls, I still couldn’t understand why. Although creating a parametric model that calculates the exact locations of bricks, seems very easy at first sight, there came severe problems to solve in order to achieve a correct layout without using […]
Posts categorized under Grasshopper
Inspired by Andru Pavlov’s design, I used a curve to accomplish grid tearing. It’s straightforward, and from an educational perspective, this exercise includes several potentials on vector arithmetics and graph manipulation techniques. As a design domain, this definition stresses the use of associative entities in a parametric model. Any primitive or complex entity may evoke different parameters in others. You may download the Grasshopper definition here:[2012_01_06_tear]
This was my first serious Grasshopper study. In 2009, I decided to attend a design contest for a campus entrance. Of course, the jury didn’t know that the design resulted from a parametric model. I have called this Parametric Entrance since then. The starting point of this project was the conception of the “entrance” as a design problem related to the project area as a whole, rather than just a […]
It has been a tough problem for me, for the last two days. A parametric model of an interlocking structure (sometimes also called egg-crate, waffle, or contouring structure) can be created easily in Grasshopper using a Contour component. In addition, you need a couple of list management operations and a boolean (or region) difference event. However, Rhino and Grasshopper are very slow at calculating boolean differences on both solids and […]
Since the mid-20th century, the hyperbolic paraboloid surface has been one of the most popular mathematical forms for architects. Named Hypar in short, this is the Quadric Surface equation of the Hyperbolic Paraboloid. Erik Demaine summarizes several examples from architecture such as the roof of the Girls’ Grammar School in London (designed by Chamberlin, Powell, and Bonn), the Philips pavilion at the 1958 Brussels exhibition designed by Le Corbusier, and […]
[2011_12_25_divide] here is the fundamental of surface subdivision in Grasshopper. In order to design a parametric truss exercise, this is the generally accepted starting point. Get a surface from the file, subdivide it into U and V directions to create point lists, and then manipulate these points to create something interesting. Having a list of points would also present good potential regarding attraction with other entities, such as point or […]
I am learning Grasshopper. In this Circle Crossing definition, I tried to create the above pattern (also described in Sunflower Spiral) as simply as possible, this definition creates not only spirals but is also capable of more tessellations I guess. Maybe a three-dimensional equivalent might be studied in the future. As you can see from the definition, I started with a large circle. Then, I divided it into segments and […]
This time, in order to develop a potential “dummy” surface for Grasshopper experiences, I built a better definition. The Graph Surface definition uses a polygon as a basis, divides the edges and moves them according to various parameters. It’s fun to play with mapping different graph types and various polygons and subdivision values. Surprisingly, this definition led me to a wide range of possibilities I haven’t planned. Especially, shifting the graph […]
NURBS surfaces by nature, like four-corner topologies with U and V directions. Şebnem Yalınay Çinici has formulated a tectonic exercise of “Primitive Hut”, which in my point of view is a tough geometric challenge; a subdivision on a real three-corner manifold. That seems very easy at the beginning as both Rhinoceros and Grasshopper are able to create surfaces with three corners, by either lofting, meshing, or edge curve methods. However, those […]
This experiment is based on a traditional surface-component definition. However, the variation of components is associated with Gaussian curvature. We just control the subdivision and a multiplier value. Results are interesting in as an educational tool to explain NURBS surface curvature and its utilization for Design Geometry. Different surface shapes generate exciting results. Of course, this could be much improved by recognizing positive and negative curvature values, (probably only accepting […]
Sunflower Spiral (or Phyllotaxis) can be constructed in Grasshopper according to Vogel’s model of parametric relationships. This model uses polar coordinates. You can download the Grasshopper definition file here: (The Grasshopper file is still working after more than 11 years -15.12.2022. This is such a powerful quality of Grasshopper, I think.) It’s a good example of utilizing polar coordinates. It’s also fun to play with the parameters and constraints of […]
We’ll use the “Animate” function in Grasshopper3D to create a stop-motion animation. First, you need to determine the parameters you’ll animate, which means defining maximum-minimum values of it. In our example, we’ll be using a simple bezier curve generation algorithm. You can download it here [2011_12_21_bezier curve.ghx]. In this definition, we plan to animate one parameter which is the value of “t” between 0.0 to 1.0. This single change affects various […]
This is a semi-regular tessellation of vertex arrangement 4.8.8. Its octagonal and square forms are all generated from data lists provided by the new version of subdivide component (The old one was processing points in a different fashion. I don’t know why they changed that). Anyway, a lexical operation is needed to convert this list into a more useful one for this exercise. You can download the source definition here […]
The smooth and continuous nature of the “Sine Surface” has garnered significant popularity among designers and architects alike. This captivating curved surface offers a visually pleasing aesthetic that adds an elegant touch to various design projects. Its flowing contours and gentle undulations create a sense of harmony and organic beauty. Recently, I delved into this with the help of Grasshopper’s Graph Mapping functionality, I began my artistic journey. Although I […]
Design scripting is initially based on secondary syntactic mechanisms that control sequential executions of code. We call this model of computation control flow programming. On the other hand, dataflow represents a widespread alternative to control flow by utilizing concurrent streams of data. Dataflow programming languages are also considered as pedagogical tools in fields where the coders are not expert computer programmers. In the last decade, new parametric modeling tools introduced […]
This is my first post in designcoding, dated 14.11.2011. I revisited the code and decided to re-publish it in 2024. Hello World! This is the Emergent Polygons definition, one of the first Grasshopper studies I made while learning the language. This is a very efficient programming language for designers and architects since it utilizes geometric relationships very intuitively. I think it will be more popular and widely used in the […]