Search
  • Sign Up
  • Sign In

Grasshopper

algorithmic modeling for Rhino

  • Home
    • Members
    • Listings
    • Ideas
  • View
    • All Images
    • Albums
    • Videos
    • Architecture Projects
    • Installations
    • Add-ons
  • Download
    • Rhino 7 w/Grasshopper
    • Add-ons
  • Forums/Support
    • Current Discussions
    • Legacy Forum
  • Learn
    • Getting Started
    • Online Reference
    • API documentation
    • Video Tutorials
    • Common Questions
    • Scripting and Coding
    • Books and Articles
  • Attend
  • My Page

Search Results - 双色球乐彩论坛4『8TBH·COM』大乐透速查表2023年3月19日5时31分24秒.H5c2a3.eobnl3rqd

粘瑜珊粘瑜珊
Comment on: Video 'Custom unroller'
述主题和得到的成果性质以及水平的简单摘要。在二者中间的是报道、指示类文摘:这类文摘类型讲述的是一份文献里信息价值比较高的地方,而按照指示类文摘的形式去表达别的部分的摘要。通常来说科技文章都要尽可能的写成报道类文摘,但是综述类、资料类评论类的论文可以写成指示类或者报道、指示类文摘。…
Added by naasaki at 2:26pm on May 21, 2022
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
Topic: Wish: matrix operations
ents will do or which components will be available.  My problem arises because I want to obtain a list such as the following: {{6, 5, 4, 3, 2, 1, 2, 3, 4, 5, 6}, {5, 6, 5, 4, 3, 2, 1, 2, 3, 4, 5}, {4, 5, 6, 5, 4, 3, 2, 1, 2, 3, 4}, {3, 4, 5, 6, 5, 4, 3, 2, 1, 2, 3}, {2, 3, 4, 5, 6, 5, 4, 3, 2, 1, 2}, {1, 2, 3, 4, 5, 6, 5, 4, 3, 2, 1}} Which displayed as a matrix is: If it were possible to combine GH operations (series, shift list, replace string...) with matrices I think it would be quite powerful. A matrix to list component like those available on scientific calculators, would then translate the matrix to list. For me, matrices come in handy when dealing with surface patterns. …
Added by Jesus Galvez at 6:46am on November 26, 2012
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
Comment on: Topic 'Blending 2 lines'
1. Duplicate the first list.(24-->48) and Graft(48 branchs of 1 item each) 2. Graft the second list.(48 branchs of 1 item each) 3. merge two list 4. Join Curves 5. Fillet Curve
Added by Hyungsoo Kim at 10:05am on June 26, 2017
Topic: Transpose list
The best way is to use a C# or a VB component to transpose these lists. I think in C# you can use transpose directly. You can ask this on the VB/C# forum on our new website, www.grasshopper3d.com - Scott On May 27, 3:56 am, Tonsgaard wrote: > Being a long time user of Generative Components trying to use > grasshopper i miss the "transpose" command. > I have a point list like this: > > 0, 1, 2, 3, 4, 5 > 0, 1, 2, 3, 4, 5 > 0, 1, 2, 3, 4, 5 > 0, 1, 2, 3, 4, 5 > 0, 1, 2, 3, 4, 5 > > and a want to transpose dimensions to: > > 1, 1, 1, 1, 1 > 2, 2, 2, 2, 2 > 3, 3, 3, 3, 3 > 4, 4, 4, 4, 4 > 5, 5, 5, 5, 5 > > Surely I am not the first in need of this... > how would i go about and do this...? I suppose its quite easy in VB > script, but being used to GC's C# like language, I kinda dont know how > to do this... > > thanks... > > Tonsgaard…
Added by Jes Tonsgaard at 9:06am on May 28, 2009
Comment on: Topic 'delete the duplicate data in a list.'
Would it possible to remove all the items which has clones? For example: [1, 1, 2, 3, 4, 3, 5, 6, 6] to [2, 4, 5]
Added by Kirill at 5:45am on April 19, 2020
Comment on: Topic 'Set roadblock'
, {36, 46}, {38, 49}, {19, 3}, {17, 1} and what you're after is: {44, 9, 9, 6}, {42, 5, 4, 42, 42, 21}, {41, 11, 41, 27}, {0, 10}, {12, 14}, {45, 25, 25, 22}, {20, 43}, {16, 26}, {28, 30}, {36, 46}, {38, 49}, {19, 3}, {17, 1} correct?…
Added by David Rutten at 11:27am on July 26, 2017
Comment on: Topic 'offsetting control points on a curve'
'reverse' reverses the order of the items in a list   e.g. 1, 2, 3, 4, 5 would become 5, 4, 3, 2, 1
Added by Sam Wood at 2:45am on October 21, 2011
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • ...
  • 316

About

Scott Davidson created this Ning Network.

Welcome to
Grasshopper

Sign Up
or Sign In

Translate

Search

Photos

  • optimized ruins

    optimized ruins

    by lost in wires 0 Comments 0 Likes

  • optimized ruins

    optimized ruins

    by lost in wires 0 Comments 0 Likes

  • Random Vector Lines

    Random Vector Lines

    by Parametric House 0 Comments 0 Likes

  • Pufferfish Net On Surface

    Pufferfish Net On Surface

    by Parametric House 0 Comments 0 Likes

  • Plan Drafting

    Plan Drafting

    by Parametric House 1 Comment 0 Likes

  • Add Photos
  • View All
  • Facebook

Videos

  • Image-to-3d Workflow using OpenAI Shap-E and Rhino

    Image-to-3d Workflow using OpenAI Shap-E and Rhino

    Added by kgm 0 Comments 0 Likes

  • Random Vector Lines

    Random Vector Lines

    Added by Parametric House 0 Comments 0 Likes

  • Text-to-3d-to-AR Workflow using OpenAI Shap-E and Rhino AR

    Text-to-3d-to-AR Workflow using OpenAI Shap-E and Rhino AR

    Added by kgm 0 Comments 0 Likes

  • Pufferfish Net On Surface

    Pufferfish Net On Surface

    Added by Parametric House 0 Comments 0 Likes

  • Plan Drafting

    Plan Drafting

    Added by Parametric House 0 Comments 0 Likes

  • Parametric Frame

    Parametric Frame

    Added by Parametric House 0 Comments 0 Likes

  • Add Videos
  • View All
  • Facebook

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

Badges  |  Report an Issue  |  Terms of Service