Search Results - 📍能量/trx闪兑📍自动trx兑换机器人👉【TG:@trxHomeBot】,用黑钱买usdt币.u (2025)

Topic: Why My Surface Disapear.
, and after I change the Component's options, the result goes empty. I don't know why this happens. Can I do anything to fix it? protected override void SolveInstance(IGH_DataAccess DA) { Grasshopper.Kernel.Types.GH_Surface srf=null; if (!DA.GetData<Grasshopper.Kernel.Types.GH_Surface>(0, ref srf)) { return; } Rhino.Geometry.Brep b= null; b = srf.Value.DuplicateBrep(); Rhino.Geometry.Surface s = b.Faces[0]; if (this.rv_u) { s=s.Reverse(0,false); } if (this.rv_v) { s=s.Reverse(1, false); ; } DA.SetData(0, s); }…
Added by ArchieHuang at 11:16pm on August 25, 2017
Topic: Filling the regions according to RGB values
en in the below figure.I want to fill the region starts from yellow region placed on left side and ends at the other yellow region placed at right side by using linear lines. Also i want to do this action for the orange color region and for the others. You can see what i want to do in below figure. (Below figure belongs to another trial. So the colored regions are different from the above figure. But below figure defines what i want to do.)I think this can be easily done by using Python but i have no idea how i can do. I know the RGB values of the colors. Actually, i obtained the region boundaries by using the RGB values of the mesh points.Could u please help me about it?…
Added by Can Mert AL at 2:45am on October 21, 2017
Topic: Rearranging sliced curves from meshes for laser-cutting
ss of splitting a Mesh (multiple simple Meshes, like a basic site-model) into a lasercut-able section parts.With help of this forum i already managed to slice through the model, rearrange every slice onto a xy-plane rectangular grid and to number every part consecutively.As for now, im pretty happy with the solution i came up with, yet i cant find a way to get rid of the rectangular grid (grid size by "largest part") and rearrange the parts within a rectangle (my future lasercutmaterial/cardboard) with the "least" amount of clippings/waste.I thought about using a pointcloud and boudingboxes, but this solution, i guess, will never "sort" the same pieces together.The other idea i had was creating seperated points/rectangular grid for every branch i have, but i srsly dont know how to automate this for every branch i have in my section tree (i still dont completley understand how trees/branches work tbh.).can u guys help me or point me in a direction i shall continue to explore?Thank you so much in advance!…
Added by Flo Neumayr at 6:22pm on November 4, 2017
Topic: Library not Registered (Tried steps in other discussions)
ing topic, so I have followed every step in this discussion, including full uninstallation with Revo Installer Pro, restart and login in as Admin, UAC, turning off antivirus, full installation, and entering the commands in CMD with admin rights (replacing "your_regsvr32_folder_path" with my "C:\Windows\System32"). I have also tried the solution on page 2, namely typing:%systemroot%\System32\regsvr32.exe /u /s c:\dev\mapwingis\mapwingis.ocx%systemroot%\System32\regsvr32.exe /s c:\dev\mapwingis\mapwingis.ocxHowever, I installedMapWinGIS-only-v5.0.1.0-x64.exe . Should I install the older version,MapWinGIS-only-v4.9.4.2-x64.exe instead?I am using Rhino6.1.18037.13441, Grasshopper 1.0.0004, IronPython 2.7.5.0, Windows 10 64bit,Thank you very much!- Marcus…
Added by Quek Wen Jia Marcus to Gismo at 9:39pm on April 7, 2019
Topic: Millepede optimization errors
idea works, I need to make it more automated and will less components/ group components that have the same function, in order to be nice and tidy. Mainly I need to do it with the part where I put the forces and the loads (you can see why in the image attached).The thing is that after I have finished with the changes and it seems to me right, I just get errors (such as "division by zero" and others) and the optimization does not run and I do not understand where the problem is.As I have not much experience with Grasshopper and Millepede, I would like to ask if anyone has any idea what could I change to get it to work. So I attach some images of the algorithm of the big version that works and the small one the more automated so that u have some idea what i want to do. Could the problem be in the way I give him the breps in the loads? I have also tried to flatten or graft them by it does not word anyway.Let me know if something is not clear or if you need part of the file in order to understand better,Thanx in advance!…
Added by Sofia Ark at 5:10am on November 12, 2014
Blog Post: JOB OPENING: Designer - Advanced Design Technology

Job responsibilities include but are not limited to the following:

Works directly with the Design Director. Responsible for development and integration of advanced design…

Added by BLINK-LAB at 5:26pm on May 27, 2014
Comment on: Group 'Acoustic Shoot'
b RunScript(ByVal srf As Surface, ByVal startPT As Point3d, ByVal startVEC As Vector3d, ByVal intMAXbounces As Integer, ByVal coef As Double, ByRef reflectionPointList As Object, ByRef contactPlanes As Object, ByRef valuePointList As Object) Dim originPt As Point3d = startPt Dim dirVec As Vector3d = startVec Dim surfaceNormal As New vector3d Dim outputPts As New List(Of Point3d) outputPts.Add(originPt) '''Dim outputPlanes As New List(Of on3dvector) '''Dim outputNormalPlanes As New List(Of On3dVector) Dim n As Integer = 0 '''Dim blnSwitch As Boolean = False While n < intMaxBounces '''Dim bounce As New On3dRay Dim shooter As New OnRayShooter Dim hit As New OnX_EVENT Dim plane As New OnPlane hit.m_type = RMA.OpenNURBS.IOnX_EVENT.TYPE.csx_point shooter.m_min_travel_distance = doc.AbsoluteTolerance() shooter.Shoot(originPt, dirVec, srf.toArray(), hit) Dim intIndex As Integer = getSrfIndex(srf, hit.m_pointA(0), hit.m_b(2), hit.m_b(3)) originPt = hit.m_pointA(0) If originPt.CompareTo(onutil.On_origin) = 0 Then '''print("exit") Dim lastPoint As Point3d = outputPts.Item(outputPts.Count - 1) Dim newPoint As New Point3d newPoint.x = (dirVec.x * 100 * coef) + lastPoint.x newPoint.y = (dirVec.y * 100 * coef) + lastPoint.y newPoint.z = (dirVec.z * 100 * coef) + lastPoint.z outputPts.Add(newPoint) Exit While End If surfaceNormal = srf(intIndex).normalAt(hit.m_b(2), hit.m_b(3)) '''plane.CreateFromNormal(hit.m_pointA(0), surfaceNormal) dirVec = reflectVector(dirVec, surfaceNormal) '''outputNormalPlanes.Add(dirVec) outputPts.Add(originPt) '''outputPlanes.Add(dirVec.PerpendicularTo(dirVec)) n = n + 1 End While If outputPts.Count > 1 Then reflectionPointList = outputPts.ToArray() '''contactPlanes = outputPlanes.ToArray() '''normalPlanes = outputNormalPlanes.ToArray() End If End Sub'<Custom additional code> Function getSrfIndex(srf As list(Of Surface), testPt As point3d, u As Double, v As Double) As Integer Dim intIndex As Integer For i As Integer = 0 To srf.count - 1 Dim srfPoint As New point3d srfPoint = srf(i).pointAt(u, v) If srfPoint.distanceTo(testPt) < doc.AbsoluteTolerance Then intIndex = i Next Return intIndex End FunctionFunction reflectVector(incomingDirection As vector3d, surfaceNormal As vector3d) As vector3d Dim tempVec As New vector3d tempVec = incomingDirection tempVec.Reverse() tempVec.Rotate(onUtil.On_PI, surfaceNormal) Return tempVec End FunctionThanks,Phillip…
Added by phillip to Acoustic Shoot at 6:27am on August 7, 2012
Comment on: Topic 'reaction diffusion on triangular mesh'
e radius). I used David Stasiuk Cocoon in order to make the shape. http://www.bespokegeometry.com/2015/07/22/cocoon/After being happy with the shape I toggle the final generation of mesh from Cocoon with a subd of 1 (126,792 faces). I then calculate direction I want for the pattern, here the same directions as the nearest curve. Surely not the smartest way of doing but it works.After that Reaction Diffusion could be used. A good site to understand is http://www.karlsims.com/rd.html A good site to choose feed and kill values is http://mrob.com/pub/comp/xmorphia/index.html In order to modify the size of the pattern I use B diffusion and also the size of the mesh. The directionality is controlled by _factor > 1 and pattern will follow tangents, and < 1 pattern will be perpendicular to the tangents.Here differents parameters to play withThis script could surely be used to replicate Nervous Reaction design, thanks to them to their creativity. http://n-e-r-v-o-u-s.com/Laurent Delrieu August 2015…
Added by Laurent DELRIEU at 10:18am on August 28, 2015
Topic: Smartgeometry 2012 Challenge announced: Material Intensities
ger at the scale of rooms, walls and atria, but that of cells, grains and vapour droplets. Rather than the flow of people, services, or construction schedules, the focus becomes the flow of light, vapour, molecular vibrations and growth schedules: design from the inside out.The sg2012 challenge, Material Intensities, is intended to dissolve our notion of the built environment as inert constructions enclosing physically sealed spaces. Spaces and boundaries are abundant with vibration, fluctuating intensities, shifting gradients and flows. The materials that define them are in a continual state of becoming: a dance of energy and information.Material potential is defined by multiple properties: acoustical, chemical, electrical, environmental, magnetic, manufacturing, mechanical, optical, radiological, sensorial, and thermal. The challenge for sg2012 Material Intensities is to consider material economy when creating environments, micro-climates and contexts congenial for social interaction, activities and organisation. This challenge calls for design innovation and dialogue between disciplines and responsibilities.sg2010 Working Prototypes strove to emancipate digital design from the hard drive by moving from the virtual to the actual in wrestling with the tangible world of physical fabrication. sg2011 Building the Invisible focused on informing digital design with real world data. sg2012 Material Intensities strives to energise our digital prototypes and infuse them with material behaviour. They have the potential to become rich simulations informed by the material dynamics, chemical composition, energy flows, force fields and environmental conditions that feed back into the design process.More information can be found athttp://www.smartgeometry.orgsg2012take place atRensselaer Polytechnic Institute,Troy, in upstate New York from 19-24 March 2012. The Workshop and Conference will be a gathering of the global community of innovators and pioneers in the fields of architecture, design and engineering.The event will be in two parts, a four dayWorkshop19-22 March, and a public conference beginning withTalkshop23 March, followed by aSymposium24 March. The event follows the format of the highly successful preceding eventssg2010 Barcelonaandsg2011 Copenhagen.…
Added by Shane Burger at 3:48pm on August 4, 2011
Event: Curso de introducción a Rhino y Grasshopper
y Grasshopper aprenderás cómo los nuevos programas paramétricos te ayudarán a expresar tu creatividad, pero siempre manteniendo un control riguroso de la forma y pudiendo comprobar multitud de soluciones de manera dinámica.Personas con conocimientos de AutoCAD hay a montones. No esperes más y móntate en eltren del diseño paramétrico, es básico para poder encontrar trabajo en cualquier parte del mundo.El curso se presenta en el siguiente formato:· Curso de 5 sesiones de 4 horas , las tardes de la semana del 1 al 5 de Octubre de 2012, en Barcelona. Precio: 225€.¡No son necesarios conocimientos previos!Para más información e inscripciones:http://www.arquitecton.es/?p=670…
Added by Frantxo Tabanera Asensio at 5:17am on September 10, 2012
  • 1
  • ...
  • 466
  • 467
  • 468
  • 469
  • 470
  • 471
  • 472
  • ...
  • 490

About

Scott Davidson created this Ning Network.

Welcome to
Grasshopper

Sign In

Translate

Search

Photos

  • Tensile Arcs

    by Parametric House 0 Comments 0 Likes

  • Rolling Shade Pavilion Rhino Grasshopper Tutorial

    by June Lee 0 Comments 0 Likes

  • Rolling Shade Pavilion Rhino Grasshopper Tutorial

    by June Lee 0 Comments 0 Likes

  • Rolling Shade Pavilion Rhino Grasshopper Tutorial

    by June Lee 0 Comments 0 Likes

  • Rolling Shade Pavilion Rhino Grasshopper Tutorial

    by June Lee 0 Comments 0 Likes

  • Add Photos
  • View All

Videos

  • Kangaroo Towers

    Added by Parametric House 0 Comments 0 Likes

  • Rolling Shade Pavilion Rhino Grasshopper Tutorial

    Added by June Lee 0 Comments 0 Likes

  • Kangaroo Towers

    Added by Parametric House 0 Comments 0 Likes

  • Voronoi Wall

    Added by Parametric House 0 Comments 0 Likes

  • Attractor Strips

    Added by Parametric House 0 Comments 0 Likes

  • Parametric Handrail

    Added by Parametric House 1 Comment 0 Likes

  • Add Videos
  • View All
Search Results - 📍能量/trx闪兑📍自动trx兑换机器人👉【TG:@trxHomeBot】,用黑钱买usdt币.u (2025)
Top Articles
Latest Posts
Recommended Articles
Article information

Author: Fredrick Kertzmann

Last Updated:

Views: 6432

Rating: 4.6 / 5 (66 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: Fredrick Kertzmann

Birthday: 2000-04-29

Address: Apt. 203 613 Huels Gateway, Ralphtown, LA 40204

Phone: +2135150832870

Job: Regional Design Producer

Hobby: Nordic skating, Lacemaking, Mountain biking, Rowing, Gardening, Water sports, role-playing games

Introduction: My name is Fredrick Kertzmann, I am a gleaming, encouraging, inexpensive, thankful, tender, quaint, precious person who loves writing and wants to share my knowledge and understanding with you.