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 - 澳洲快乐8如何挣钱-『9TBH·COM』澳门大乐透49码--2023年3月19日6时46分34秒.H5c2a3.keyn8m8w9-gov-hk

Topic: Link Lenght modification
change If [x] reach 4 then [y] start growing to 1 then 2 when [x] reach 7 etc... Overall i'd like to put it in a single slider like : 1      -->    x=1    y=0 2      -->    x=2    y=0 3      -->    x=3    y=0 4      -->    x=4    y=1 5      -->    x=5    y=2 6      -->    x=6    y=3 7      -->    x=7    y=4 8      -->    x=7    y=5 9      -->    x=7    y=6 10      -->    x=7    y=7 Any ideas ? Pyhton script maybe ? Thanks …
Added by Louis Ainesi at 4:34am on September 29, 2016
Topic: HELP : create connection with arduino 3Dprinter
rstand everything and I need help. Below: I have found in Marlin the pins of X,Y,Z,... but I don't know how to connect them and get response. In Firefly "Uno write" we have just pins 3,5,6,8,9,10,11,12,13 and I see more pins below.And what's the difference between Digital/PWM/Servo. All help is very  appreciated ! /**************************************************************************************** #define X_STEP_PIN       49 #define X_DIR_PIN        13 #define X_ENABLE_PIN     48 #define X_MIN_PIN        35 #define X_MAX_PIN        -1 //34 #define Y_STEP_PIN         11 #define Y_DIR_PIN          9 #define Y_ENABLE_PIN       12 #define Y_MIN_PIN          33 #define Y_MAX_PIN          -1 //32 #define Z_STEP_PIN         7 #define Z_DIR_PIN          6 #define Z_ENABLE_PIN       8 #define Z_MIN_PIN          31 #define Z_MAX_PIN          -1 //30 #define E2_STEP_PIN        43 #define E2_DIR_PIN         47 #define E2_ENABLE_PIN      42 #define E1_STEP_PIN        18 #define E1_DIR_PIN         19 #define E1_ENABLE_PIN      38 #define E0_STEP_PIN        40 #define E0_DIR_PIN         41 #define E0_ENABLE_PIN      37 #define SDPOWER            -1 #define LED_PIN            -1 //Use +12V Aux port for LED Ring #define FAN_PIN            16 //5V PWM #define PS_ON_PIN          10 //Set to -1 if using a manual switch on the PWRSW Connector #define SLEEP_WAKE_PIN   26 //This feature still needs work #define HEATER_0_PIN       45 //12V PWM1 #define HEATER_1_PIN       46 //12V PWM2 #define HEATER_2_PIN       17 //12V PWM3 #define HEATER_BED_PIN     44 //DOUBLE 12V PWM #define TEMP_0_PIN         3 //ANALOG NUMBERING #define TEMP_1_PIN         2  //ANALOG NUMBERING #define TEMP_2_PIN         1  //ANALOG NUMBERING #define TEMP_BED_PIN       0 //ANALOG NUMBERING #define BEEPER            36 #define KILL_PIN           -1…
Added by Wouter Bert at 3:54am on December 4, 2015
Comment on: Topic 'OT: Shanghai Bound'
你好 Danny Boyes 我在杭州, 如果能提前约5小时看到啤酒的位置, 我就朝它奔去。 很荣幸地围观。 在40度的上海,我带一点台风和冰雹过去、、、 还是拜托你带吧,说不定你要路过海洋。
Added by zlyx at 6:56am on August 9, 2013
Topic: creating datatree from list of paths
only the given paths using components from GH0.7 ? i didn't find one for that. best, heinz. …
Added by Heinz Schmiedhofer at 4:44am on August 9, 2010
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
Topic: Shifting paths like shifting lists
{0;1;0}N=6 {0;1;1}N=6 {0;1;2}N=5 {0;2;0}N=7 {0;2;1}N=8 {0;2;2}N=9 Can you shift and wrap any of the paths A B or C? Say if I wanted to shift and wrap B by 1 to get the following... {0;0;0}N=7 {0;0;1}N=8 {0;0;2}N=9 {0;1;0}N=3 {0;1;1}N=2 {0;1;2}N=5 {0;2;0}N=6 {0;2;1}N=6 {0;2;2}N=5…
Added by roderick read at 6:35am on May 15, 2013
Comment on: Topic 'Replace values in a list due to greater than component'
s 8, 4, 2, 10, 1, 3, 8, 4, 2, 0. But then for the end result to maintain all numbers above 5 but replace all numbers below with a defined number..Let's say zero. So then the list would read...8, 0, 0, 10, 0, 0, 8, 0, 0.…
Added by Matt at 8:11pm on August 31, 2010
Comment on: Topic 'Select geometry based on divided domain chunks'
which will result in creating a check for each branch with one item to be 'matched' (in this case to see if it is included in the domain) with all three domains in the single list. so in the end you get a data tree with 8 branches (derived from the 8 grafted values) with 3 items in each branch, that are the check of each initial value with the 3 items domain list. thank you for sharing the other option too!. cheers alex…
Added by ng5 Alex at 5:12pm on February 24, 2015
Topic: ERROR loading Grasshopper on Windows 8
o luck so far. I get the same error every time. I am attaching a print screen. Thanks to anyone who makes an effort P.S. My PC is running now Windows 8 Enterprise N RTM x64 Build 9200 …
Added by cuki fuki at 1:24am on September 25, 2012
Comment on: Topic 'Dynamic input in slider limits?'
could accomplish this by adding something like '5.0 + Slider * 3.0' into the expression field... (and having an integer slider with domain 0 to 6).   -- David Rutten david@mcneel.com Poprad, Slovakia…
Added by David Rutten at 10:19am on February 24, 2011
  • 1
  • ...
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • ...
  • 64

About

Scott Davidson created this Ning Network.

Welcome to
Grasshopper

Sign In

Translate

Search

Photos

  • Parametric Structure

    Parametric Structure

    by Parametric House 0 Comments 0 Likes

  • Tensile Column

    Tensile Column

    by Parametric House 0 Comments 0 Likes

  • Quarter Pavilion Rhino Grasshopper Tutorial

    Quarter Pavilion Rhino Grasshopper Tutorial

    by June Lee 0 Comments 0 Likes

  • Quarter Pavilion Rhino Grasshopper Tutorial

    Quarter Pavilion Rhino Grasshopper Tutorial

    by June Lee 0 Comments 0 Likes

  • Quarter Pavilion Rhino Grasshopper Tutorial

    Quarter Pavilion Rhino Grasshopper Tutorial

    by June Lee 0 Comments 0 Likes

  • Add Photos
  • View All
  • Facebook

Videos

  • Parametric Structure

    Parametric Structure

    Added by Parametric House 0 Comments 0 Likes

  • Tensile Column

    Tensile Column

    Added by Parametric House 0 Comments 0 Likes

  • Quarter Pavilion Rhino Grasshopper Tutorial

    Quarter Pavilion Rhino Grasshopper Tutorial

    Added by June Lee 0 Comments 0 Likes

  • Circle Packs

    Circle Packs

    Added by Parametric House 0 Comments 0 Likes

  • Random Abstract 2d Pattern - Rhino Grasshopper

    Random Abstract 2d Pattern - Rhino Grasshopper

    Added by kgm 0 Comments 0 Likes

  • Inflated Diamonds

    Inflated Diamonds

    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