Search
  • Sign In

Grasshopper

algorithmic modeling for Rhino

  • Home
    • Members
    • Listings
    • Ideas
  • View
    • All Images
    • Albums
    • Videos
    • Architecture Projects
    • Installations
    • Add-ons
  • Forums/Support
    • Current Discussions
  • My Page

Search Results - 双色球和值尾数是8和9的数『1TBH·COM』全球通彩票代理注册2023年3月19日7时59分41秒.H5c2a3.ivhduifoj

Topic: Which Intersection-Points are on which Brep
rep 1 Point 3, 7, 8, 4       is intersecting with Brep 2 Point 5, 0, 9, 11     is intersecting with Brep 3 and so on... Hopefully you can help me out! Robert …
Added by Robert Megel at 9:58am on December 17, 2012
Topic: i need help..
does any one know how to create stream like {0} 0 {1} 1 2 {2} 3 4 5 {3} 6 7 8 {4} 9 10 11 12 then ~~more~~ thx lot...
Added by wei ting at 2:53am on December 19, 2012
Topic: Very simple question...
se the cull pattern, so I wanted to make the pattern using a function component. x=y. x= the original list and y= the interval i wanted to remove. So the pattern should be: 0: false 1:false 2:false 3:false 4:true 5:true 6:true 7:true 8:false 9:false 10:false etc...…
Added by Rasmus Holst at 3:32am on November 17, 2009
Comment on: Topic 'Build lines between two points in a certain order'
53 → 53 → 63 → 74 → 74 → 84 → 9 As you can see from the above list the connection sequence comes in waves of three, where each group of similar indices on the left is associated with a group of three incrementing indices on the right. Some combination of Series components will probably generate this list, but it'll only work for the first ring, the second one will need a different connection pattern. It is perhaps better to just encode the integer pairs by hand. But then you cannot change your mind about the number of sides later.…
Added by David Rutten at 10:39am on October 21, 2015
Comment on: Topic 'Specific results(outputs) for specific inputs?'
    13             5    15             6    17             7    ...            … But it seems I have not been clear:   the input values (3,5,7,9,11,13) should be presented in the way of "number slider" parameter. So by increasing the value of the slider from minimum 3, to 5, 7, 9, 13, 15, 17... I should get an output numbers of 0,1,3,4,5,6,7...   So I if choose value 3 on the input "number slider", on the other end, I want 0 as an output. Or if I choose value 5 on the input "number slider", I want 1 as an output, and so on.   Is this possible?…
Added by djordje at 6:37pm on August 5, 2011
Comment on: Photo 'link'
that guarantees structural stability. This particular structure has been studied by Maurizio Brocato and Lucia Mondardini, it is inspired by a french patent from the 16th century for a flat vault deposited by Mr. Abeille, giving the name 'Abeille vault'. You can find more info on nexorades here: http://thinkshell.fr/form-finding-of-nexorades-and-reciprocal-structures/ http://thinkshell.fr/4604/ http://snbr-stone.com/index.php?option=com_content&view=article&id=19&catid=9&Itemid=29 Best, Romain …
Added by Romain Mesnil at 1:47am on June 29, 2016
Comment on: Group 'Ladybug Tools'
he sunPath component works. For example if you want to simulate the hours from 8 to 16 it means you want 8 hours from 8 to 9, from 9 to 10,.... from 15 to 16 (8 hours duration period) so you get from the sunPath component (using default timeStep 1) the 9 sun position/vectors 8 9 10 11 12 13 14 15 16 (in the image the yellow suns). The things is that if you ask for a smaller timeStep for example 3 = 20 mins then the additional sun position (in the image the orange suns) are added also after the time limit of h16 so probably when you don't want/need. I understand that when you input a time period there is the ambiguity if the hours are the just 9 (the 9 inputs) or the 8 hours included between pairs of hours, but I would make in a way that it is possible to chose if the extra timeStep after the last hour are added or not. Thank you for your comments. …
Added by Francesco De Luca to Ladybug Tools at 8:47am on December 7, 2015
Comment on: Album '"Schwalbenschwanzverbindung" Paperlamp'
wunderbar ^^* ! maybe you would be interested in Jun Mitani's work ? www.flickr.com/photos/jun_mitani/mitani.cs.tsukuba.ac.jhe published two books (keyword : 三谷 純)立体ふしぎ折り紙  ふしぎな 球体・立体折り紙 
Added by laeti at 7:53am on January 28, 2013
Comment on: Topic 'Meilleur bookmaker'
こんにちは!日本で話題のplinkoを試してみたくてプレイしました。初めてプレイした時から、すぐにその楽しさに魅了されました。ゲームはシンプルなのに、次々に起こる予測不可能な展開にドキドキしっぱなし。数回プレイして、ついに大きな勝利を手に入れることができました!日本で手軽に楽しめるオンラインゲームを探しているなら、絶対にお勧めです!
Added by Michael Fluer to Jackalope at 10:35am on April 16, 2025
Topic: how can I use, "MeshVertexColorList.SetColor Method (MeshFace, Color)" ?
try.Mesh mesh = new Rhino.Geometry.Mesh();    mesh.Vertices.Add(0.0, 0.0, 1.0); //0    mesh.Vertices.Add(1.0, 0.0, 1.0); //1    mesh.Vertices.Add(2.0, 0.0, 1.0); //2    mesh.Vertices.Add(3.0, 0.0, 0.0); //3    mesh.Vertices.Add(0.0, 1.0, 1.0); //4    mesh.Vertices.Add(1.0, 1.0, 2.0); //5    mesh.Vertices.Add(2.0, 1.0, 1.0); //6    mesh.Vertices.Add(3.0, 1.0, 0.0); //7    mesh.Vertices.Add(0.0, 2.0, 1.0); //8    mesh.Vertices.Add(1.0, 2.0, 1.0); //9    mesh.Vertices.Add(2.0, 2.0, 1.0); //10    mesh.Vertices.Add(3.0, 2.0, 1.0); //11    mesh.Faces.AddFace(0, 1, 5, 4);    mesh.Faces.AddFace(1, 2, 6, 5);    mesh.Faces.AddFace(2, 3, 7, 6);    mesh.Faces.AddFace(4, 5, 9, 8);    mesh.Faces.AddFace(5, 6, 10, 9);    mesh.Faces.AddFace(6, 7, 11, 10);    mesh.Compact();    mesh.VertexColors.SetColor(mesh.Faces[0], Color.Black);    A = mesh;  } ------------------------------------------------------------------- but it seems, it doesn't work. I can't see any change of color. what did I wrong? Thanks!…
Added by y.KWON at 3:01pm on September 18, 2012
  • 1
  • ...
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • ...
  • 89

About

Scott Davidson created this Ning Network.

Welcome to
Grasshopper

Sign In

Translate

Search

Photos

  • Circuit Pavilion Rhino Grasshopper Tutorial

    Circuit Pavilion Rhino Grasshopper Tutorial

    by June Lee 0 Comments 1 Like

  • Circuit Pavilion Rhino Grasshopper Tutorial

    Circuit Pavilion Rhino Grasshopper Tutorial

    by June Lee 0 Comments 0 Likes

  • Vase

    Vase

    by Andrey Zotov 0 Comments 2 Likes

  • Vase Mesh

    Vase Mesh

    by Andrey Zotov 0 Comments 1 Like

  • Patterns

    Patterns

    by Andrey Zotov 0 Comments 0 Likes

  • Add Photos
  • View All
  • Facebook

Videos

  • Circuit Pavilion Rhino Grasshopper Tutorial

    Circuit Pavilion Rhino Grasshopper Tutorial

    Added by June Lee 0 Comments 0 Likes

  • Floating Mobius Pavilion Rhino Grasshopper Tutorial

    Floating Mobius Pavilion Rhino Grasshopper Tutorial

    Added by June Lee 0 Comments 0 Likes

  • Magnet Shade Pavilion Rhino Grasshopper Tutorial

    Magnet Shade Pavilion Rhino Grasshopper Tutorial

    Added by June Lee 0 Comments 0 Likes

  • Ngon Mesh

    Ngon Mesh

    Added by Parametric House 1 Comment 0 Likes

  • Minimal Surface

    Minimal Surface

    Added by Parametric House 0 Comments 0 Likes

  • Wind Pavilion

    Wind Pavilion

    Added by Parametric House 0 Comments 0 Likes

  • Add Videos
  • View All
  • Facebook

© 2026   Created by Scott Davidson.   Powered by Website builder | Create website | Ning.com

Badges  |  Report an Issue  |  Terms of Service