Search
  • 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 - 河北11选5走势开奖结果查询-『9TBH·COM』排列5彩乐乐预测--2023年3月19日7时1分43秒.H5c2a3.drt5fhf55-gov-hk

chuoiit19chuoiit19
Comment on: Topic 'Path Mapper Component - what are "placeholders"?'
where each branch contains all the points generated by dividing each curve, so if you divide into 10 segments, you'll get: {0;0}(N = 11) {0;1}(N = 11) {0;2}(N = 11) {0;3}(N = 11) {0;4}(N = 11) Where the second integer in the curly brackets refers back to the index of the curve in the original list. Another way to look at this data is to see it as a table. It's got 5 rows (one for each original curve) and 11 columns, where every column contains a specific division point. -- David Rutten david@mcneel.com Poprad, Slovakia…
Added by David Rutten at 1:23pm on April 3, 2012
Topic: how to build meshes from breps
per components.   I have attached a 3dm file and a picture so you guys can see what I am talking about.   I have previously translated boxes into breps, which i did with this code:   Dim bbx As New box(pl, New interval(-.5, .5), New interval(-.5, .5), New interval(-.5, .5))            Dim ms As New Mesh()            ms.Vertices.AddVertices(bbx.GetCorners)            ms.Faces.AddFace(0, 1, 2, 3)            ms.Faces.AddFace(0, 1, 5, 4)            ms.Faces.AddFace(1, 2, 6, 5)            ms.Faces.AddFace(2, 3, 7, 6)            ms.Faces.AddFace(3, 0, 4, 7)            ms.faces.addface(4, 5, 6, 7)            ms.Normals.ComputeNormals()             ms.Compact()   I have tried to do something similar with this specific example, and I now that meshes only consist of quads or triangles, so i broke down the geometry into quads without any succes.   Looking foreward to any suggestions.   - Jens…
Added by Jens Pedersen at 10:48am on July 13, 2011
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
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 'list re-ordering'
in the desired order.   0 = 0 1 = 1 2 = 6 3 = 7 4 = 8 5 = 9 6 = 12 7 = 13 8 = 2 9 = 3 10 = 4 11 = 5 12 = 10 13 = 11   Where the first number is the index and the second number is the actual sorting key. Then you sort these keys while sorting your curves in parallel using the A input of the Sort component.   -- David Rutten david@mcneel.com Poprad, Slovakia…
Added by David Rutten at 1:49pm on March 11, 2011
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
Comment on: Topic 'tree manipulation feature requests'
ee 3) {5} 0 15 {6} 0 16 And I want to place points at every possible combination of these coordinates, treating Tree 1 as X coordinates, Tree 2 as Y coordinates, and Tree 3 as Z coordinates. Also, I would like the list of points to be a tree with paths corresponding to the coordinates. Wouldn't it be nice if I could plug these trees into a Point XYZ, with a new "branch cross reference" method, and get the following result? {0:3:5} 0 {10.0, 13.0, 15.0} {0:3:6} 0 {10.0, 13.0, 16.0} {0:4:5} 0 {10.0, 14.0, 15.0} {0:4:6} 0 {10.0, 14.0, 16.0} {1:3:5} 0 {11.0, 13.0, 15.0} {1:3:6} 0 {11.0, 13.0, 16.0} {1:4:5} 0 {11.0, 14.0, 15.0} {1:4:6} 0 {11.0, 14.0, 16.0} {2:3:5} 0 {12.0, 13.0, 15.0} {2:3:6} 0 {12.0, 13.0, 16.0} {2:4:5} 0 {12.0, 14.0, 15.0} {2:4:6} 0 {12.0, 14.0, 16.0} In this form of cross referencing, every combination of individual branches from the different lists is used as separate input, and the output for each combination is put onto a branch in the result whose path is the concatenation of the input branch paths used.…
Added by Andy Edwards at 7:03pm on November 3, 2009
Comment on: Video 'Parametric Design Study of Qatar Foundation Headquarters'
幅一般不超过全文的5%。摘要不需要具体阐述,不需要图表等也不需要评价。…
Added by naasaki at 2:00pm on May 12, 2021
Comment on: Topic 'Simple Tree Structuring Question - Partition List for Branches'
nd y, or do you need GH to figure out these values at runtime?…
Added by David Rutten at 8:53am on May 18, 2017
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • ...
  • 601

About

Scott Davidson created this Ning Network.

Welcome to
Grasshopper

Sign In

Translate

Search

Photos

  • Kangaroo Structures

    Kangaroo Structures

    by Parametric House 0 Comments 0 Likes

  • Circular Extrusions

    Circular Extrusions

    by Parametric House 0 Comments 0 Likes

  • Voronoi Canopies

    Voronoi Canopies

    by Parametric House 0 Comments 0 Likes

  • Attractor Modules

    Attractor Modules

    by Parametric House 0 Comments 0 Likes

  • Weave Facade

    Weave Facade

    by Parametric House 1 Comment 0 Likes

  • Add Photos
  • View All
  • Facebook

Videos

  • Kangaroo Structures

    Kangaroo Structures

    Added by Parametric House 0 Comments 0 Likes

  • Circular Extrusions

    Circular Extrusions

    Added by Parametric House 0 Comments 0 Likes

  • Voronoi Canopies

    Voronoi Canopies

    Added by Parametric House 0 Comments 0 Likes

  • Attractor Modules

    Attractor Modules

    Added by Parametric House 0 Comments 0 Likes

  • Weave Facade

    Weave Facade

    Added by Parametric House 0 Comments 0 Likes

  • Origami Crane

    Origami Crane

    Added by Parametric House 0 Comments 0 Likes

  • Add Videos
  • View All
  • Facebook

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

Badges  |  Report an Issue  |  Terms of Service