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

Comment on: Topic 'closest point, intersection'
be change in what way? …
Added by djordje at 6:15pm on November 17, 2012
Topic: Dispatch component implementation
e possible to change the component definition making possible to customize the number of outputs.Now Dispatch moves "true" values to A and "False" values to B INPUT: L (List to work on) -> 1, 2, 3, 4, 5, 6, 7, 8 D (Dispatch Pattern) -> True, False OUTPUT: A (List) -> 1, 3, 5, 7 B (List) -> 2, 4, 6, 8 Could it be possible/useful to modify it so it could dispatch items to several outputs, like: INPUT: L (List to work on) -> 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 D (Dispatch Pattern) -> A, B, C OUTPUT: A (List) -> 1, 4, 7, 0 B (List) -> 2, 5, 8 C (List) -> 3, 6, 9 maybe I'm missing something and there's already a component with this function... I have been searching on the forum for half afternoon, but can't find anything about it! Thank you!…
Added by Ale Inno at 9:21am on March 18, 2014
Comment on: Topic 'Cull Pattern'
etc. Group 2 - 1, 6, 11, 16, 21 etc. Group 3 - 2, 7, 12, 17, 22 etc. Group 4 - 3, 8, 13, 18, 23 etc. Group 5 - 4, 9, 14, 19, 24 etc. " except in data, the branches start at 0, so 'group 1' is branch 0 as for the order of your points, that depends on the input prior sorting... yrs …
Added by arkadius belov at 5:38am on October 13, 2017
Comment on: Topic 'The pathmapper seems to behave in a weird way'
9 = 0.67 = 1 7/9 = 0.78 = 1  8/9 = 0.89 = 1 9/9 = 1.00 = 1 compared to: 0\9 = 0 1\9 = 0 2\9 = 0 3\9 = 0 4\9 = 0 5\9 = 0 6\9 = 0 7\9 = 0 8\9 = 0 9\9 = 1…
Added by Danny Boyes at 8:57am on January 12, 2015
Blog Post: Isolux curves for sky

Hallo Community,

Is there a plugin or a simple formula where i can insert the weather data (Global Illuminances) into a matrix and produce an isolux curve for sky?

The datas…

Added by nass at 1:36am on May 14, 2017
Topic: accumulate
13;2}   ...  20.{13;12} 21. {21;0}22. {21;1}23. {21;2}  ...  41. {21;20} 42. {34;0}43. {34;1}44. {34;2}  ...  75. {34;33} 76. {55;0}77. {55;1}   ...   ....   I want to grab the first 8 [0-7], the next 13[8-20], the next 21[21-42] etc so i have the (known fibonacci seq) list of numbers on the left here: C       S 8      0 13    8 21    21 34    42 55    76 89    131 144  220 233  364   and i need the list on the right, so that i can select items using a Series (N=1 and S and C from the list above) and a List Item component.   the simple question is: is there a component that can take a list and accumulate it in this way that I need? if not, is there anyone that can point me to a simple relevant VB example so i could easily adapt it?   many thanks, gotjosh…
Added by gotjosh at 9:51am on August 10, 2011
Topic: クラスEの経験を元に、とりあえずpythonやってみました。
…?) このmakeptという部分はVectorunitizeでベクターを定義してそこにポイントを作成する。という内容でs理解はできたのですが、その下の"re"という関数で、なぜ枝分かれして分岐していくのかがわかりません。 上記の状態で問題なく動いているのですが、"gens"の数値が1以上の場合、 linelistになんのpolylineが入っているのかがわかりません。 もしご存知でしたらご教授お願いします。 …
Added by UTB01 to FabCafe Tokyo at 8:36am on February 22, 2015
Video: Parametric Bottle Design
-design パラメトリックにボトルデザインをする.ghxファイル, 16のパラメーターでプロファイルカーブ、分割数等をコントロール。 .ghxのダウンロードと詳細は上記FORUMより。…
Added by Atsuo Nakajima at 8:26pm on July 12, 2009
Comment on: Topic 'grasshopper draw only one line...why? simple example help'
Integer = 0 To 9    val *= 2    lst.Add(val) Next Since val is a ValueType, when we assign it to the list we actually put a copy of val into the list. Thus, the list contains the following memory layout: [0] = 2 [1] = 4 [2] = 8 [3] = 16 [4] = 32 [5] = 64 [6] = 128 [7] = 256 [8] = 512 [9] = 1024 Now let's assume we do the same, but with OnLines: Dim ln As New OnLine(A, B) Dim lst As New List(Of OnLine) For i As Integer = 0 To 9    ln.Transform(xform)    lst.Add(ln) Next When we declare ln on line 1, it is assigned an address in memory, say "24 Bell Ave." Then we modify that one line over and over, and keep on adding the same address to lst. Thus, the memory layout of lst is now: [0] = "24 Bell Ave." [1] = "24 Bell Ave." [2] = "24 Bell Ave." [3] = "24 Bell Ave." [4] = "24 Bell Ave." [5] = "24 Bell Ave." [6] = "24 Bell Ave." [7] = "24 Bell Ave." [8] = "24 Bell Ave." [9] = "24 Bell Ave." To do this properly, we need to create a unique line for every element in lst: Dim lst As New List(Of OnLine) For i As Integer = 0 To 9    Dim ln As New OnLine(A, B)    ln.Transform(xform)    lst.Add(ln) Next Now, ln is constructed not just once, but whenever the loop runs. And every time it is constructed, a new piece of memory is reserved for it and a new address is created. So now the list memory layout is: [0] = "24 Bell Ave." [1] = "12 Pike St." [2] = "377 The Pines" [3] = "3670 Woodland Park Ave." [4] = "99 Zoo Ln." [5] = "13a District Rd." [6] = "2 Penny Lane" [7] = "10 Broadway" [8] = "225 Franklin Ave." [9] = "420 Paper St." -- David Rutten david@mcneel.com Poprad, Slovakia…
Added by David Rutten at 6:26am on September 9, 2010
  • 1
  • ...
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • ...
  • 89

About

Scott Davidson created this Ning Network.

Welcome to
Grasshopper

Sign In

Translate

Search

Photos

  • 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

  • Text1

    Text1

    by Andrey Zotov 0 Comments 0 Likes

  • Plate

    Plate

    by Andrey Zotov 0 Comments 2 Likes

  • Add Photos
  • View All
  • Facebook

Videos

  • 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

  • Mobius Cutout Pavilion Rhino Grasshopper Tutorial

    Mobius Cutout Pavilion Rhino Grasshopper Tutorial

    Added by June Lee 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