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 - 南京栖霞区(援交)援交上门微信156-8194-7106提供外围女小姐上门服务快速安排面到付款这里存放顺序变量,一行一个.9

Topic: Untitled
gh, when I bake, the geometry suddenly exists in rhino. Second, I can seem to figure out how to set default numeric values in the component. Protected Overrides Sub RegisterInputParams(pManager As Grasshopper.Kernel.GH_Component.GH_InputParamManager) pManager.AddPointParameter("Focal Point", "FP", "The focal point", GH_ParamAccess.item) pManager.AddNumberParameter("Focal Point Horiz Dist", "D", "Focal point distance from performance boundary", GH_ParamAccess.item) pManager.AddNumberParameter("Focal Point Height", "H", "Focal point height above performance boundary", GH_ParamAccess.item) pManager.AddPointParameter("First Row Start Point", "FR", "Location of first row in tiered seating", GH_ParamAccess.item) pManager.AddNumberParameter("First Row Horiz Dist", "FRD", "First row distance from performance boundary", GH_ParamAccess.item) pManager.AddNumberParameter("First Row Height", "FRH", "First row height above performance boundary", GH_ParamAccess.item) pManager.AddNumberParameter("C Value", "C", "C value", GH_ParamAccess.item) pManager.AddNumberParameter("Row Width", "RW", "Row width", GH_ParamAccess.item) pManager.AddIntegerParameter("Number of Rows", "RN", "Number of Rows", GH_ParamAccess.item) pManager.AddIntegerParameter("Construction Tolerance", "CT", "Construction Tolerance: 1=1in, 2=1/2in, 4=1/4in, 8=1/8in", GH_ParamAccess.item) pManager.AddNumberParameter("Max Riser Height", "MR", "Maximum riser height allowed", GH_ParamAccess.item) pManager.AddGeometryParameter("Spectator", "S", "Seated/Standing spectator", GH_ParamAccess.item) End Sub Protected Overrides Sub RegisterOutputParams(pManager As Grasshopper.Kernel.GH_Component.GH_OutputParamManager) pManager.AddLineParameter("Sightlines", "SL", "Sightlines", GH_ParamAccess.list) pManager.AddLineParameter("C Value", "CL", "Line represents C value height", GH_ParamAccess.list) pManager.AddLineParameter("Ground Line", "GL", "Ground Line", GH_ParamAccess.list) pManager.AddLineParameter("Tier tread", "TR", "Line represents tier treads", GH_ParamAccess.list) pManager.AddLineParameter("Risers", "RI", "Line represents risers", GH_ParamAccess.list) pManager.AddGeometryParameter("Spectators", "SP", "Seated Standing Spectators", GH_ParamAccess.list) End Sub Protected Overrides Sub SolveInstance(DA As IGH_DataAccess) Dim newLine As New List(Of Line) Dim newCValue As New List(Of Line) Dim rowWidthLineList As New List(Of Line) Dim floorLineList As New List(Of Line) Dim riserLineList As New List(Of Line) Dim leghtList As New List(Of String) Dim newSeated As New List(Of GeometryBase) Dim inputPoint As Point3d If (Not DA.GetData(0, inputPoint)) Then Return Dim viewPointY As Double If (Not DA.GetData(1, viewPointY)) Then Return Dim viewPointZ As Double If (Not DA.GetData(2, viewPointZ)) Then Return Dim firstRowPoint As Point3d If (Not DA.GetData(3, firstRowPoint)) Then Return Dim firstRowY As Double If (Not DA.GetData(4, firstRowY)) Then Return Dim firstRowZ As Double If (Not DA.GetData(5, firstRowZ)) Then Return Dim cValue As Double If (Not DA.GetData(6, cValue)) Then Return Dim rowWidth As Double If (Not DA.GetData(7, rowWidth)) Then Return Dim numberOfRows As Integer If (Not DA.GetData(8, numberOfRows)) Then Return Dim M As Integer If (Not DA.GetData(9, M)) Then Return Dim maxHeight As Double If (Not DA.GetData(10, maxHeight)) Then Return Dim seated As GeometryBase If (Not DA.GetData(11, seated)) Then Return Call addNewRow(newLine, newCValue, inputPoint, viewPointY, viewPointZ, firstRowPoint, firstRowY, firstRowZ, cValue, numberOfRows, rowWidth, rowWidthLineList, floorLineList, riserLineList, M, maxHeight, seated, newSeated) DA.SetDataList(0, newLine) DA.SetDataList(1, newCValue) DA.SetDataList(2, rowWidthLineList) DA.SetDataList(3, floorLineList) DA.SetDataList(4, riserLineList) DA.SetDataList(5, newSeated) End Sub Public Sub addNewRow(---constructor----) ---additional code---- end Sub…
Added by Pierre Roberson at 3:33pm on October 2, 2012
Topic: Cubic Close Packing
deform into rhombic dedocahedrons when they reach equilibrium. http://mathworld.wolfram.com/CubicClosePacking.html I was trying to model sphere lattice constrained within a boundary box. When inflated, they would not intersect with each other; they would stay in place; and would be malleable just enough to expand and fill in the gaps in between the spheres. I started off with the help of this thread here(Thanks for those contributed!). As I understood, there was a bug in Kangaroo2. Solver can't handle more than one item plugged in. So I tried to understand David's Stasiuk's Script and adopted it with a few variations, please see gh file attached. In the first 5 - I've used David Stasiuk's C# component-variable pressure (posted on June 9, 2015 at 12:25am): 'No. 4.5' being the most successful simulation so far(inflation value is kept very low so that they would not intersect); although I realised I made some math mistake in setting the close packing grid.(could be checked by plugging voronoi3D to see if the area of the rhombic faces are regular) No. 6-7 I tried with Kangaroo2 components. After consulting my tutor(Andrei Jipa)'s help, I realised the following changes could be made: - The definition posted by David on June 8, 2015 at 4:47pm with constant pressure would've worked better. - Icosahedrons with WbCatmull(Quad divisions) would result in more even load distribution. With wbloop, vertices more concentrated at poles. - Load in dir Z could be omitted. Andrei has suggested to use lengths(line) in Kangaroo 2 as 'pressure' instead. And I am trying to improve the grid; and maybe try with David's constant pressure definition. I will keep you guys posted of the progress!  I am new to the parametric world, comments/advice very much appreciated! :) Zhini  …
Added by Zhini Poh at 5:23pm on October 31, 2015
Topic: Maximum arguments reached for this object, trying to process
8.3.0 ************* IDF Context for following error/warning message: ************* Note -- lines truncated at 300 characters, if necessary... ************* 829 Construction, ************* indicated Name=PELLE001 ************* Only last 10 lines before error line shown..... ************* 832 AIR WALL2, !- - Layer 2 ************* 833 X-LAM, !- - Layer 3 ************* 834 POLYSTYRENE2, !- - Layer 4 ************* 835 PANNELLO VIP, !- - Layer 5 ************* 836 POLYSTYRENE2, !- - Layer 6 ************* 837 X-LAM, !- - Layer 7 ************* 838 LANA DI ROCCIAS, !- - Layer 8 ************* 839 VANO IMPIANTI, !- - Layer 9 ************* 840 LANA DI ROCCIAS, !- - Layer 10 ************* 841 LASTRA IN GESSOFIBRA, !- - Layer 11 ** Severe ** IP: IDF line~841 Error detected for Object=CONSTRUCTION ** ~~~ ** Maximum arguments reached for this object, trying to process ->LASTRA IN GESSOFIBRA<- ************* IDF Context for following error/warning message: ************* Note -- lines truncated at 300 characters, if necessary... ************* 985 Construction, ************* indicated Name=ROOF001 ************* Only last 10 lines before error line shown..... ************* 988 TRAVETTI, !- - Layer 2 ************* 989 TAVOLATO, !- - Layer 3 ************* 990 POLYSTYRENE2, !- - Layer 4 ************* 991 PANNELLO VIP, !- - Layer 5 ************* 992 POLYSTYRENE2, !- - Layer 6 ************* 993 X-LAM, !- - Layer 7 ************* 994 LANA DI ROCCIAS, !- - Layer 8 ************* 995 VANO IMPIANTI, !- - Layer 9 ************* 996 LANA DI ROCCIAS, !- - Layer 10 ************* 997 LASTRA IN GESSOFIBRA, !- - Layer 11 ** Severe ** IP: IDF line~997 Error detected for Object=CONSTRUCTION ** ~~~ ** Maximum arguments reached for this object, trying to process ->LASTRA IN GESSOFIBRA<- ** Warning ** IP: Note -- Some missing fields have been filled with defaults. See the audit output file for details. ** Severe ** IP: Possible incorrect IDD File ** ~~~ ** IDD Version:"IDD_Version 8.3.0" ** ~~~ ** Version in IDF="8.3" not the same as expected="8.3" ** ~~~ ** Possible Invalid Numerics or other problems ** Fatal ** IP: Errors occurred on processing IDF file. Preceding condition(s) cause termination. ...Summary of Errors that led to program termination: ..... Reference severe error count=3 ..... Last severe error=IP: Possible incorrect IDD File ************* Warning: Node connection errors not checked - most system input has not been read (see previous warning). ************* Fatal error -- final processing. Program exited before simulations began. See previous error messages. ************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors. ************* EnergyPlus Sizing Error Summary. During Sizing: 0 Warning; 0 Severe Errors. ************* EnergyPlus Terminated--Fatal Error Detected. 1 Warning; 3 Severe Errors; Elapsed Time=00hr 00min 0.34sec My question is how i can fix it ??? and why it tell me that: ** Severe ** IP: Possible incorrect IDD File** ~~~ ** IDD Version:"IDD_Version 8.3.0"** ~~~ ** Version in IDF="8.3" not the same as expected="8.3"** ~~~ ** Possible Invalid Numerics or other problems** Fatal ** IP: Errors occurred on processing IDF file. Preceding condition(s) cause termination....Summary of Errors that led to program termination: Help me pleaseeeeeeee  Happy new year!!!!!…
Added by LHOR at 4:55am on December 31, 2015
Topic: Maximum arguments reached for this object, trying to process
8.3.0************* IDF Context for following error/warning message:************* Note -- lines truncated at 300 characters, if necessary...************* 829 Construction,************* indicated Name=PELLE001************* Only last 10 lines before error line shown..... ************* 832 AIR WALL2, !- - Layer 2************* 833 X-LAM, !- - Layer 3************* 834 POLYSTYRENE2, !- - Layer 4************* 835 PANNELLO VIP, !- - Layer 5************* 836 POLYSTYRENE2, !- - Layer 6************* 837 X-LAM, !- - Layer 7************* 838 LANA DI ROCCIAS, !- - Layer 8************* 839 VANO IMPIANTI, !- - Layer 9************* 840 LANA DI ROCCIAS, !- - Layer 10************* 841 LASTRA IN GESSOFIBRA, !- - Layer 11** Severe ** IP: IDF line~841 Error detected for Object=CONSTRUCTION** ~~~ ** Maximum arguments reached for this object, trying to process ->LASTRA IN GESSOFIBRA<-************* IDF Context for following error/warning message:************* Note -- lines truncated at 300 characters, if necessary...************* 985 Construction,************* indicated Name=ROOF001************* Only last 10 lines before error line shown.....************* 988 TRAVETTI, !- - Layer 2************* 989 TAVOLATO, !- - Layer 3************* 990 POLYSTYRENE2, !- - Layer 4************* 991 PANNELLO VIP, !- - Layer 5************* 992 POLYSTYRENE2, !- - Layer 6************* 993 X-LAM, !- - Layer 7************* 994 LANA DI ROCCIAS, !- - Layer 8************* 995 VANO IMPIANTI, !- - Layer 9************* 996 LANA DI ROCCIAS, !- - Layer 10************* 997 LASTRA IN GESSOFIBRA, !- - Layer 11** Severe ** IP: IDF line~997 Error detected for Object=CONSTRUCTION** ~~~ ** Maximum arguments reached for this object, trying to process ->LASTRA IN GESSOFIBRA<-** Warning ** IP: Note -- Some missing fields have been filled with defaults. See the audit output file for details.** Severe ** IP: Possible incorrect IDD File** ~~~ ** IDD Version:"IDD_Version 8.3.0"** ~~~ ** Version in IDF="8.3" not the same as expected="8.3"** ~~~ ** Possible Invalid Numerics or other problems** Fatal ** IP: Errors occurred on processing IDF file. Preceding condition(s) cause termination....Summary of Errors that led to program termination:..... Reference severe error count=3..... Last severe error=IP: Possible incorrect IDD File************* Warning: Node connection errors not checked - most system input has not been read (see previous warning).************* Fatal error -- final processing. Program exited before simulations began. See previous error messages.************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.************* EnergyPlus Sizing Error Summary. During Sizing: 0 Warning; 0 Severe Errors.************* EnergyPlus Terminated--Fatal Error Detected. 1 Warning; 3 Severe Errors; Elapsed Time=00hr 00min 0.34sec My question is how i can fix it ??? and why it tell me that: ** Severe ** IP: Possible incorrect IDD File** ~~~ ** IDD Version:"IDD_Version 8.3.0"** ~~~ ** Version in IDF="8.3" not the same as expected="8.3"** ~~~ ** Possible Invalid Numerics or other problems** Fatal ** IP: Errors occurred on processing IDF file. Preceding condition(s) cause termination....Summary of Errors that led to program termination: Help me pleaseeeeeeee  Thanks and Happy new year!!!!!…
Added by LHOR to Ladybug Tools at 2:08am on January 1, 2016
Event: Paramétrica D_O_F Enedi 2009
workshop de exploración formal y espacial usando algoritmos generativos integrando la optimizacion y fabricación en un mismo proceso. Para este taller se han seleccionado un conjunto de técnicas y estrategias para resolver problemas que hoy se presentan en el diseño y fabricación digital de formas complejas y euclidianas. Bajo dos entornos de trabajo, entre técnicas interactivas y soluciones algorítmicas, se examinan conceptos y casos de estudio que le permitirán al participante decidir como y en que momento estas tecnologías pueden ser utilizadas como aliadas en los procesos de diseño y fabricación. Tomando como plataforma básica Rhino, se explora y optimiza el diseño y fabricación de topologías complejas bajo los entornos de Grasshopper RhinoNest y RhinoCam. Paramétrica D_O_F pretende ahondar en el vinculo entre la industria, el mundo académico y la aplicacion profesional, a partir del desarrollo de sistemas de diseño digital y la fabricacion CNC. Para esta ocasión se suma Sabic Polymershapes,posibilitando la incorporación de la variable material dentro del diseño digital, agregando una nueva dimensión a las propuestas del workshop, de manera que estas se piensen, desarrollen y fabriquen en materiales Sabic con la tecnología Router CNC que disponen como empresa. El dia final, Parametrica.org en conjunto a Sabic Polymershapes, Enedi, Eximed y Mcneel LA nombrará un ganador para ser fabricado por Sabic Polymershapes Chile. Paramétrica D_O_F esta dirigido a profesores y alumnos pertenecientes al area de Diseño Digital de carreras como Arquitectura, Diseño Industrial, e Ingenierías. Tambien se hace extensiva esta invitación a Arquitectos, Diseñadores Industriales, e Ingenieros pertenecientes al sector publico y privado. Las vacantes para aplicar a este workshop son 40. Inscripciones: http://workshop.parametrica.org/ Sponsor: Sabic Polymershapes Chile Instructores: Rodrigo Culagovski www.culagovski.net Guillermo Parada www.gt2P.cl Diego Pinochet escripto.wordpress.com Mario Vergara sistemasderepresentacion2.wordpress.com Andres Gonzalez www.rhino3d.com Colaboran Jackie Nasser www.rhino3d.com Rafael De Molino www.tdmsolutions.com René Medel www.rhino3d.cl NelsonEbensperger www.revistambientes.cl Contacto e información: data@parametrica.org…
Added by gt2p at 10:57pm on June 27, 2009
Event: Workshop Gdl: Morfologías Algorítmicas
ntación en distintos procesos del Diseño. Se abordaran los conceptos basicos y la metodologia para abordar problemas de diseño a traves del desarrollo de Herramientas Algorítmicas mediante un proceso de programacion visual. Como plataforma de trabajo se utilizara Rhinoceros+Grasshopper. Instructor: Leonardo Nuevo Arenas Fechas: 17 y 18 de Septiembre de 2011 Lugar: Calzada del Federalismo Sur No. 135 Altos 3, Frente al Parque Rojo (http://bit.ly/nNOuZ5) Cupo: Limitado a 15 plazas Fecha limite de pago: Viernes 9 de Septiembre Importante: Los participantes deberán traer su propia Laptop con todo el software y actualizaciones (originales o versiones de demostración oficiales) previamente instaladas. (Se fijara una fecha unos días antes para revisas que todos los equipos estén en orden y listos para trabajar). Si planeas venir de fuera de la ciudad contactanos y te pondremos en contacto con otras personas que también vayan a hacerlo para en caso de desearlo puedan compartir su lugar de estancia. Contacto: Leo. 33 3956 9209 nuarle@msn.com Aye. 33 1050 3482 ayeritza.fara@gmail.com…
Added by Leonardo Nuevo Arenas at 3:36pm on August 28, 2011
Event: RHINO | VRAY | GRASSHOPPER | VISUALARQ+BIM
ig­i­tais de forma cria­tiva e rig­orosa, para a con­cepção de mod­e­los 3D– Familiarizar-se com as lóg­i­cas de cri­ação de geome­trias tridi­men­sion­ais NURBS.- Desenvolver técnicas de criação de imagens fotorealistas com o motor de render V-Ray- Introduzir as lógicas paramétricas e associativas processo criativo.- Introduzir novas lógicas de BIM no processo estrutural (Building Information Modeling).# INFORMAÇÕES E INSCRIÇÕESinfo@rhino3dportugal.comAna Fonseca: 917140716 Mais informações disponíveis no site: www.rhino3dportugal.com# FORMADORES Brimet Silva ( Authorized Rhino Trainer ) ................................................... Curso de Rhino3D Nível I 6, 7 e 9 de Julho9h-13h e 14h-18h (sessões diárias de 8h).....................................................Curso de Vray-Nível I 12 e 14 de Julho9h-13h e 14h-18h (sessões diárias de 8h).................................................Curso de Grasshop­per Nível I 16 e 18 de Julho9h-13h e 14h-18h (sessões diárias de 8h)................................................. VisualARQ e Rhino BIM- Nível I 21 e 23 de Julho9h-13h e 14h-18h (sessões diárias de 8h) …
Added by Brimet Silva at 2:42pm on May 23, 2012
Event: AA Rio de Janeiro Infrastructure Padrão FIFA
Visiting School Rio de Janeiro will collaborate with the Centro Carioca de Design  with the support of Columbia University Studio X to investigate new possibilities for the urban infrastructure surrounding World Cup Stadiums. Nation-wide, there has been significant investment to build and renovate stadiums for the 2014 World Cup in order to meet the required standard FIFA regulations (‘Padrão FIFA’). At the same time, there has been a large public demand for equal investment into transport systems, public space, and public programs such as hospitals and schools.  The Visiting School will tap into the momentum of this movement, and promote a series of interventions within and around the World Cup structures, proposing new public programs and standards for their legacy.  Students can choose to focus directly on the Maracanã stadium in Rio de Janeiro, the venue for the Final match of the World Cup. The intense ten-day workshop will employ computational design and digital fabrication to introduce a design methodology that creatively automates and promotes transformation, mutation and complexity for these infrastructure interventions. Prominent Features of the workshop Teaching teamThe teaching team will include a mix of tutors from the Architectural Association, including Theodore Sarantoglou Lalis e Dora Sweijd (lassa-architects.com) of Diploma 17, and locally-based architects, urban-designers and experts, mediated by locally-based Visiting School directors, to promote cutting-edge innovative strategies informed by local political, economic and construction issues. Computational skillsThe workshop will teach advanced digital modeling and parametric design skills, no previous experience is needed. A group of specialist computation tutors will conduct an initial skills workshop and continue to assist throughout the workshop to develop the individual projects of the participants. Digital FabricationA series of physical models will be built using digital fabrication techniques that will be taught during the workshop, no previous experience is needed. Applications 1) You can make an application by completing the online application found under ‘Links and Downloads’ on the AA Visiting School page. If you are not able to make an online application, email visitingschool@aaschool.ac.uk for instructions to pay by bank transfer. 2) Once you complete the online application and make a full payment, you are registered to the programme. A CV or a portfolio is not required. The deadline for applications is 11thApril 2014. All participants travelling from abroad are responsible for securing any visa required, and are advised to contact their home embassy early. After payment of fees, the AA School can provide a letter confirming participation in the workshop. Fees The AA Visiting School requires a fee of £695 per participant, which includes a £60 Visiting membership fee. Fees do not include flights or accommodation, but accommodation options can be advised. Students need to bring their own laptops, digital equipment and model making tools. Please ensure this equipment is covered by your own insurance as the AA takes no responsibility for items lost or stolen at the workshop. Eligibility The workshop is open to current architecture and design students, phd candidates and young professionals.  …
Added by Victor Sardenberg at 12:37pm on March 13, 2014
Event: Parametric Brick Wall-Facade using Rhino and Grasshopper | Advanced Digital Modeling for Additive Manufacturing (3D Printing)
ll-Facade using Rhino and Grasshopper Participants will learn; Rhinoceros Grasshopper Advanced Parametric Design Brick Formations and Explorations Shadow-Design Relationship     Session 2: Advanced Digital Modeling for Additive Manufacturing (3D Printing) Participants will learn; How to prepare a 3D design to 3D Printing process in Rhinoceros Advanced Methods for 3D Print optimisation for time and cost effective production 3D Printing software education Cura INFO Date Saturday, 28 September 2019 Schedule 9:30am – 2:30pm (Session 1) | 2:45pm – 7:00pm (Session2) Venue (TBC) Pada Labs, Istanbul  Language English/Turkish   Softwares Rhinoceros Grasshopper 3D Cura Participants will need to bring their own laptops with software installed; other plugins will be distributed at the workshop.   Prerequisites  All tutorials are open to beginner level. No previous knowledge of Cura and Grasshopper needed. Basic knowledge of Rhinoceros recommended. Participation The workshop is limited to the first 20 applicants. Each student will receive a certificate of participation.   Prices for each session: (You can pick one and attend one)   Special Early registration (Deadline 1 August ) Students 310 TL Professionals 400 TL   Regular registration  Students 390 TL Professionals 480 TL   Prices for Session 1&2 Combined: (Full Day)   Special Early registration (Deadline 1 August ) Students 540 TL Professionals 690 TL   Regular registration  Students 620 TL Professionals 790 TL  DISCOUNTS Group registration of 3 or more people will get a 15% discount.   * Previous Pada workshop students will get a 10% discount. DIRECTOR Begum Aydinoglu, M.Arch AA DRL will be instructing and directing the following workshops. REGISTRATION: Email to pada.workshops@gmail.com for registration instructions. Please note that we have limited seats and there won't be any exceptions. …
Added by Begüm Aydınoğlu at 9:08am on August 7, 2019
Comment on: Topic 'Into to Grasshopper Webinar - feedback, recording, and files'
his comes in the form of an HTML page with links to every component, so you will need to view it in your web browser. (I use Chrome and it doesn't seem to be working correctly, but when opened in IE its fine.) 2) Included in each help topic for each component is the Inputs and Outputs descriptions and data types. 3) You supply the data. What you supply and how you supply it is for you to decide. There are umpteen different ways. Are you asking for a list of those ways for each input? 4) Points can either be Rhino objects or 3D co-ordinates. To create a point you can use any of these methods, but it mostly comes down to user preference. I like using Panels as this displays outside of the component. 5) Because of the nature of vectors they represent magnitude and direction but they don't have an independent location, so there is a component that will display vectors in Rhino. 6) The user. 7) There is a Primer on the front page. Here you find the Basics, but because GH is ever evolving in its current beta state you might find things that aren't relevant any more or simply don't work the same. And here is the reason why nobody is writing an update because it could be soon out of date. 8) Importing images by either dragging them from explorer onto the canvas or right click context menu Image... 9) Single line = Single Item of Data. Double line = Multiple items of data on the same Branch. Dashed Double Line = Multiple Data on Multiple Branches. 10) User preference 11) Toolbar management is probably the bane of David's life. Most things are logically placed. For example the Curve Tab, Primitives are any simple curve types that you are creating from scratch. Similarly Splines is for more complex curve types created from scratch. Analysis is where you find components that are finding answers supplied by curves, control points, curvature, parameters, end points etc. Division is a subset of this category but has a group of its own. And Utilities is where you find curve related actions that you want to perform, offsetting, rebuilding projecting, exploding etc. 12) I would image it would have been the Point On Curve component in Curve>Analysis. Why that group? You are not putting a point on a curve you are analysing a curve for the location of a point based on some parameters that you are supplying. For example "what is the mid point?" I hope this goes some way towards answering you questions. No doubt this will have generated more so don't be afraid to ask, it took me several releases of Explicit History (aka Grasshopper) before I realised what the egg did, it never occurred to me that I could put my objects into Rhino when I was finished. Or the fact that I could use panels to 'see' data outputs. Al the best, Danny…
Added by Danny Boyes at 3:48am on December 9, 2010
  • 1
  • ...
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162

About

Scott Davidson created this Ning Network.

Welcome to
Grasshopper

Sign In

Translate

Search

Photos

  • 3b3c30b82651e1836dd71339b2046529

    3b3c30b82651e1836dd71339b2046529

    by SEO MIN SEOK 0 Comments 0 Likes

  • Inflated Diamonds

    Inflated Diamonds

    by Parametric House 0 Comments 0 Likes

  • Diamond Attractor

    Diamond Attractor

    by Parametric House 0 Comments 0 Likes

  • Inflated Shell

    Inflated Shell

    by Parametric House 0 Comments 0 Likes

  • Kangaroo Structure

    Kangaroo Structure

    by Parametric House 0 Comments 0 Likes

  • Add Photos
  • View All
  • Facebook

Videos

  • 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

  • Diamond Attractor

    Diamond Attractor

    Added by Parametric House 0 Comments 0 Likes

  • Inflated Shell

    Inflated Shell

    Added by Parametric House 0 Comments 0 Likes

  • Kangaroo Structure

    Kangaroo Structure

    Added by Parametric House 0 Comments 0 Likes

  • Parametric Bench

    Parametric Bench

    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