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 - ⛳️加❣️line:sammibaby❣️了解力曼完整分析‼️快速减肥100斤的方法🍭分享經濟商機🐅减肥期間能吃紫甘藍🍓揉肚子真的能减肥嗎🌊韓國化妝品樂天免稅店🐓什麼時間喝咖啡减肥🚐力曼中國大陸

Comment on: Topic 'Invalid Text Lines - Single Stroke Font Problem?'
to get a nice set of single stroke curves. It seems like the "TextObject" command is able to make some translation from text to curves that the C# output is not able to do, because it will output invalid curves every time I try to use a single stroke font (but only on certain characters). I'm not sure what "TextObject" is able to do that the script is not, but I didn't notice anything promising in the SDK, and I'm guessing that the script is creating the same type of object as the "Text" command, before exploding. In any case, later today I was planning to simply put a command line macro ("-TextObject") into a VB.NET component, and the finding a way to grab the results and bring the curves back into Grasshopper. It seems like it should work until a more precise solution can be found. I'll post the results later. …
Added by Benjamin Golder at 7:04am on June 16, 2010
Comment on: Topic 'Create array of Vectors from input Points.'
nt - 1   rays.Add(ptEnd - ptStart(i))Next   I don't see anything immediately wrong with your code, though I find it peculiar that the error message claims it happened on line:0. Typically you only get line:0 errors when there is a fundamental problem during compilation, but an index-out-of-range error is usually a runtime bug, not a compile-time bug.   I think you'll need to post the entire script (or only that part of it which is causing problems) so we can run it on out own machines.   -- David Rutten david@mcneel.com Poprad, Slovakia…
Added by David Rutten at 3:44am on June 9, 2011
Comment on: Topic 'Learning data trees'
nition 3) Notice that you get the expected results. 4) Now rebuild the Line in Rhino. Point Count = 5, Degree = 3 5) Still the same results 6) Now show control points in Rhino. 7) Delete the 4th Control Point ie. not the mid point or the two ends but either (not both) of the other two 8) Now you will see a mid domain point biased to one end.…
Added by Danny Boyes at 3:03am on June 22, 2011
Comment on: Topic 'Clean Definition and multiple curve to work building code parametrize'
evaluate the position of the polygon selected then start from this point to project the intersection corner then subdivide the line to construct the inside polygons. i need some interrogations, 1- another clean and short way to fillet my polygons corners and find the intersection point      to start the subdivision.  2- theres a way to draw a line through 4 point to make a closed polygon different that what i used to.   list item doesnt work for me now, maybe i neet to start to evaluate a custom C# or VB# to achieve my goals.  comments will be helpfull   this is the first issues of my Master Thesis project, and i'm not an expert in GH.  http://aircrossover.wordpress.com/  …
Added by Toussaint Jimenez Rojas at 4:37pm on March 28, 2012
Comment on: Topic 'Matrix multiplication in VB'
ng error-message (in danish): Which translates to: 'ON_Matrix_New' can not be found i the DLL 'rhcommon_c'. (line:0) I've tried to rewrite my own file based on the coding in yours, but every time a get an error-message on the line that contains the multiplication of the matrices... So I'm inclined to think that it's not possible to perform the multiplication in RH4, unless I create the code myself?? It's not essential to perform the matrix multiplication, but it would make my work alot easier! Thanks, Peter…
Added by Peter Stavnshøj at 2:17am on April 18, 2012
Comment on: Topic 'Generate points on 3d section with vectors'
hat I just found in Rhino help. u- and v-directions Every surface is roughly rectangular. Surfaces have three directions, u, v, and normal. You can display the u- and v-directions and the normal direction with the Dir command. The u- and v-directions are like the weave of cloth or screen. The u-direction is indicated by the red arrow, and the v-direction is indicated by the green arrow. The normal direction is indicated by the white arrow. You can think of u-, v-, and normal-directions as corresponding to the x, y, and z of the surface. These directions are used when mapping textures and inserting knots .   …
Added by Sam Gitelman at 11:22am on May 21, 2012
Comment on: Topic 'comparing two lines - vb component'
starting mesh. The geometry of the lines is then modified, through the formfinding routine. In my second vb component, I need to build an array with 4 columns. Each row represent one face of the mesh (row 0 for face 0, row1 for face 1, ...) and each column represent the number of the edge element. If ABCD is the quad face, column 0 is  the number of the edge AB, column 1 is BC, column 2 is CD and column 3 is DA. So to build this array, I extract the edges of each face with FaceB component then Explode component, and I build the array by comparing each line coming from this to each line coming from MEdges component, with a 2 level nested loop. Here is where I am looking for an efficient way to compare 2 lines... Is there an easier and faster way to build this array ?…
Added by Guillaume Niel at 2:41pm on November 28, 2012
Comment on: Topic 'Random Point with distance'
e creates constraints between pairs of points, if you provide a pair (= a line) with Rest Length  = D, that means Kangaroo will try to keep the points exactly D units away. If Upper cutoff is set to D, that means points won't be able to be closer than D, but can be farther (its like a repulsion sphere of radius D around points). Also, I am not sure this alpha measure is very good, you can have a very regular Voronoi with just 2 points close together. Using the variance or standard deviation of  [distance of closest point] would be better.…
Added by Yoann Mescam (Systemiq) at 6:22pm on March 27, 2013
Comment on: Topic 'Text curves from a string'
Rhino crashes on trying to send files with 10,000+ curves, my tactic is to send the file in parts if it's huge...  It could also be the buffer memory in your laser, or your network... Exploding the text (as you appear to have done here) is definitely going to add to file size and cutting time - you are doubling each letter - so it's better to work with single line fonts if possible.  The scripts above do work in Rhino - we use them all the time - but there is one problem that that has occurred with V5 - text justification.  As text now comes in as justified any which way one can unfortunately no longer predict accurately if the single line replacement for the test is going to end up in the right place.  In V4, the text insertion point was always in the lower left corner, in V5 it could be lower, upper or mid and right or left...  there are no real tools to detect this AFAIK. --Mitch…
Added by Mitch Heynick at 8:54am on April 21, 2013
Comment on: Topic 'Select layer "XXX" by rhinoscript'
use the hyphen to disable the window and use the command line version of the SelLayer command. private void RunScript(string layer, bool run, ref object A) {  if (!run) return;  Rhino.RhinoApp.RunScript("-_SelLayer " + '"' + layer + '"', true); } This C# component has two inputs, one string identifying the layer name to be selected and one bool that allows you to enable/disable the script easily. I added double quotes around the layer name because if the name has a space it will act as a premature assignment in the Rhino command line. -- David Rutten david@mcneel.com Tirol, Austria…
Added by David Rutten at 10:09am on September 20, 2013
  • 1
  • ...
  • 629
  • 630
  • 631
  • 632
  • 633
  • 634
  • 635
  • ...
  • 1095

About

Scott Davidson created this Ning Network.

Welcome to
Grasshopper

Sign In

Translate

Search

Photos

  • Voronoi Multipipe

    Voronoi Multipipe

    by Parametric House 0 Comments 0 Likes

  • Triangular Connections

    Triangular Connections

    by Parametric House 0 Comments 0 Likes

  • Bridge Tower

    Bridge Tower

    by Parametric House 0 Comments 0 Likes

  • Contour Table

    Contour Table

    by Parametric House 0 Comments 0 Likes

  • Voronoi Cell Pavilion Rhino Grasshopper Tutorial

    Voronoi Cell Pavilion Rhino Grasshopper Tutorial

    by June Lee 0 Comments 0 Likes

  • Add Photos
  • View All
  • Facebook

Videos

  • Voronoi Multipipe

    Voronoi Multipipe

    Added by Parametric House 0 Comments 0 Likes

  • Triangular Connections

    Triangular Connections

    Added by Parametric House 0 Comments 0 Likes

  • Bridge Tower

    Bridge Tower

    Added by Parametric House 0 Comments 0 Likes

  • Contour Table

    Contour Table

    Added by Parametric House 0 Comments 0 Likes

  • Menger Sponge generated by OpenAI ChatGPT GPT5 + GHPython in Grasshopper Rhino

    Menger Sponge generated by OpenAI ChatGPT GPT5 + GHPython in Grasshopper Rhino

    Added by kgm 0 Comments 0 Likes

  • Voronoi Cell Pavilion Rhino Grasshopper Tutorial

    Voronoi Cell Pavilion Rhino Grasshopper Tutorial

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