Rhino Grasshopper Complex Twist With Graph Mapper Explained for Beginners

  Рет қаралды 20,876

How to Rhino

How to Rhino

Күн бұрын

Пікірлер: 31
@HowtoRhino
@HowtoRhino 4 жыл бұрын
Free How to Rhino Community 👉 www.skool.com/howtorhino Rhino for Architects Course ✔ howtorhino.com/course/ Project files + Grasshopper definition 👉 www.patreon.com/posts/32141976
@Jerhus54
@Jerhus54 9 ай бұрын
thank you very much for this tuto, is it possible to create a thickness for the inner part and a bottom, in order to create a vase, thank you very much.
@mohandalbasha4658
@mohandalbasha4658 4 жыл бұрын
thank you for sharing my work .....good job man
@HowtoRhino
@HowtoRhino 4 жыл бұрын
Thanks Mohand!
@wonderworld-E7
@wonderworld-E7 4 жыл бұрын
Mohand albasha good job. But i am asking is it possible to do this building without using grasshopper
@mohandalbasha4658
@mohandalbasha4658 4 жыл бұрын
@@wonderworld-E7 yes i didn,t use it
@SuperNat9999
@SuperNat9999 4 жыл бұрын
Always an amazing tutorial
@HowtoRhino
@HowtoRhino 4 жыл бұрын
Thanks Nathaniel!
@vannopang6200
@vannopang6200 4 жыл бұрын
VERY USEFUL, THANK YOU SO MUCH
@HowtoRhino
@HowtoRhino 4 жыл бұрын
You're welcome Van!
@suzyb2688
@suzyb2688 4 жыл бұрын
Thank you
@HowtoRhino
@HowtoRhino 4 жыл бұрын
You're welcome!
@naeemkooreyshi2012
@naeemkooreyshi2012 4 жыл бұрын
Thank you for this awesome tutorial I managed to follow all the way to 37:00 in the video As soon as I add the second curve to the loft, the first curve removes itself... Any advice?
@HowtoRhino
@HowtoRhino 4 жыл бұрын
Hey Naeem, try holding "Shift" while you input the second curve :D
@hemdrupdesign
@hemdrupdesign 4 жыл бұрын
Thanks for sharing
@HowtoRhino
@HowtoRhino 4 жыл бұрын
You're welcome :)
@maidarioskoke8310
@maidarioskoke8310 Жыл бұрын
In the final step to close the curves, it does not allow me to join two curves to the loft.
@wonderworld-E7
@wonderworld-E7 4 жыл бұрын
Thanks for this tutorial. But i want to know is it possible to do this building without using grasshopper. I mean only by Rhino without grass
@HowtoRhino
@HowtoRhino 4 жыл бұрын
Yes, it's possible, of course, but this tutorial was how to do it with Grasshopper :)
@wonderworld-E7
@wonderworld-E7 4 жыл бұрын
@@HowtoRhino can you do it without grasshopper or difficult. Anyway thank you for this channel.
@mihirmistry4985
@mihirmistry4985 4 жыл бұрын
Why do we have to shift paths after off-setting the Fin lines?
@HowtoRhino
@HowtoRhino 4 жыл бұрын
Hi Mihir! Great question :) Flip Matrix can't be applied to a data tree with a multi-layer structure. That's why we need to modify, create a single-layer data tree structure that will contain multiple items inside each branch. If you take a look you can see that each branch contains one item. In our case, we are trying to get a data tree that should have 64 branches with 12 items in each branch. So instead having (multi-layer structure): {0;0;0;0} (1) {0;0;0;1} (1) {0;0;0;2} (1) {0;0;0;3} (1)... {0;0;0;10} (1) {0;0;0;11} (1) {0;0;1;0} (1) {0;0;1;1} (1) {0;0;1;2} (1) {0;0;1;3} (1)... {0;0;1;10} (1) {0;0;1;11} (1) {0;0;2;0} (1) {0;0;2;1} (1) {0;0;2;2} (1) {0;0;2;3} (1)... {0;0;2;10} (1) {0;0;2;11} (1)... {0;0;62;0} (1) {0;0;62;1} (1) {0;0;62;2} (1) {0;0;62;3} (1)... {0;0;62;10} (1) {0;0;62;11} (1)... {0;0;63;0} (1) {0;0;63;1} (1) {0;0;63;2} (1) {0;0;63;3} (1)... {0;0;63;10} (1) {0;0;63;11} (1)... We want to have (single-layer structure): {0;0;0} (12) {0;0;1} (12) {0;0;2} (12)... {0;0;62} (12) {0;0;63} (12) Once we get that, the next step is to connect output with the Shift Paths component.
@mihirmistry4985
@mihirmistry4985 3 жыл бұрын
@@HowtoRhino so it collapsed the outer branch on the inner branch right? Thanks 😀
@maximusark7969
@maximusark7969 2 жыл бұрын
so nice
@HowtoRhino
@HowtoRhino 2 жыл бұрын
Hey Maximus, thanks! If you'd like to take this a step further and have a complete step by step approach in learning Rhino and Grasshopper that includes our personal coaching, you may want to check out our Rhino for Architects 2.0 Course! Please reach out and send me an email at dusan@howtorhino.com if you're interested and I'll tell you a lot more about it there and share the course platform with you as well! Cheers! :)
@jaredmallard9986
@jaredmallard9986 4 жыл бұрын
I have everything working except the fins. I'm working on a script that uses a similar method to generate a city scape over a voronoi field, but because the definition is being applied to multiple instances the data trees get messed up somewhere along the way. I can make fins that run radially but not vertically because I can't flip the matrix. Any idea how to fix this?
@HowtoRhino
@HowtoRhino 4 жыл бұрын
Hi Jared! Have you tried to flip matrix using path mapper component? Depending on the data tree depth, you need to swap last letter in the syntax with the "i". For example if you have 3 layers data tree depth {A;B;C} your path mapper syntax should be {A;B;C}(i) ---> {A;B;i}(C). Same logic should be applied for other data tree depth cases. If this doesn't work feel free to contact me at lazar@howtorhino.com
@jaredmallard9986
@jaredmallard9986 4 жыл бұрын
@@HowtoRhino Amazing thank you!
@nucleusv
@nucleusv 2 ай бұрын
а с подбородком Тани К что будем делать )))
@sarahay3437
@sarahay3437 2 жыл бұрын
does anyone know where the facade tutorial is?
@HowtoRhino
@HowtoRhino 2 жыл бұрын
What Facade Sarah?
Rhino Grasshopper Facade with multiple attractor points
15:36
How to Rhino
Рет қаралды 13 М.
Wavy Wall in Grasshopper | Rhino
23:12
How to Rhino
Рет қаралды 29 М.
Всё пошло не по плану 😮
00:36
Miracle
Рет қаралды 3,4 МЛН
How I Turned a Lolipop Into A New One 🤯🍭
00:19
Wian
Рет қаралды 11 МЛН
إخفاء الطعام سرًا تحت الطاولة للتناول لاحقًا 😏🍽️
00:28
حرف إبداعية للمنزل في 5 دقائق
Рет қаралды 83 МЛН
Бенчик, пора купаться! 🛁 #бенчик #арти #симбочка
00:34
Симбочка Пимпочка
Рет қаралды 3,6 МЛН
Creating a Tower in Grasshopper (For Beginners)
19:42
GH Tutorials
Рет қаралды 47 М.
Grasshopper 3D Tutorial: Graph Mapper Introduction
10:28
Graph Mapper - Grasshopper tutorial
18:02
Rhino Grasshopper
Рет қаралды 44 М.
Nelson Bubble Lights With Grasshopper
11:00
The Adam
Рет қаралды 11 М.
grasshopper tutorial   parametric structure
13:52
Rhino Grasshopper
Рет қаралды 6 М.
Getting Started with Rhino Part 2 - Lines, Faces, and 3D Shapes!
20:47
The Rhino Essentials
Рет қаралды 23 М.
# 259 : Twist Tower / Rhino Grasshopper Advanced Tutorial
24:02
GH Parametric Design
Рет қаралды 3,1 М.
# 237 : Convex Concave Lampshade / Rhino Grasshopper Advanced Tutorial
12:51
GH Parametric Design
Рет қаралды 9 М.
How to: Beginner Simple Seamless Pattern (Grasshopper)
37:01
Gediminas Kirdeikis
Рет қаралды 29 М.
Всё пошло не по плану 😮
00:36
Miracle
Рет қаралды 3,4 МЛН