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 - 福利彩票动物彩票开奖结果-『1TBH·COM』彩票开奖结果双色球预测推荐--2023年3月26日3时43分45秒.H5c2a3.ijxj9ijro-cc

Comment on: Video 'boids in a box.avi'
物理是最具挑战性的科目之一。学生们必须通过大量的研究,进行大量的计算。这对那些没有很多时间的学生来说并不容易。最好是向在线专业人士寻求物理作业帮助https://lunwenzhushou.net/wu-li-dai-xie/,他们可以帮助你。
Added by naasaki at 5:11am on November 23, 2022
Comment for: sunwei
你好,想请问一下,你grasshopper3d上面头像里的模型是你自己用grasshopper建的吗?如果是的话,能不能请问下你是否有办法让这个3d voronoi是限定在一个bounding box里面的?谢谢。
Added by Tommy Zhou at 2:32am on September 23, 2010
Comment on: Video 'Transformations of space conceptual Study.'
主题名称和其他相关信息。…
Added by naasaki at 2:12pm on April 12, 2021
Comment on: Topic 'Smartgeometry 2014 Hong Kong: Urban Compaction'
、、、不同角度的理解、诠释、运用和发掘规律、、、 新闻或者幻觉:马王堆墓穴中发掘出了丝绸做的鞋,不算是现代意义上真正的鞋,但是完成了一个完整的公式。 有一部分需要是共同的,在离开了沙滩和草地的时候。 找一个成熟的不一样的数学思维合作者,(可以一起申请参加sg2014活动,也可以不) 我想听到人们写给自己的语言,我不害怕听不懂; 也不在意你能看到我的美丽的脚和我们美丽的城市。 你存在?存在0.1%?如果≥1/4 With the two version of the PDF in the file upload, doubt, 10th should be able to see the many PDF. There are some scruples, confusion ——"The additional property of professional activities",——Subject classification, commercial, regional、、、 There is a place Africa, people don't wear shoes, A few people with grass or leather on the foot (and buildings——In order to spatial density) winding, the manufacture of shoes, two sales do two judgment: A There is no life belongs to shoes B this is the market. I spent a lot of energy explained to students, which is not to do programming people do、、、 the different angle understanding, interpretation, application and explore the law、、、 The news or illusion:Mawangdui tomb unearthed silk shoes , is not the modern sense of true shoes, but the completion of a complete formula. There is a need is common, when they leave the beach and grass. Find a mathematically mature different thinking partners,(Can apply to participate in the activities of the sg2014, also can not) I want to hear people wrote their own language, I am not afraid of don't understand; Don't care what you can see my beautiful feet and our beautiful city. Do you have? There are 0.1%? If ≥1 / 4 You know what I did wheni found out about you? msxf6688@163.com …
Added by zlyx at 10:46pm on March 5, 2014
Comment on: Topic 'Point Deform that can move brep's control Points'
lass BrepDeform Inherits GH_Component Public Reslist As New List(Of String) Public Sub New() MyBase.New("BrepDeform", "Deform", _ "移动物件的控制点" & vbCrLf & "(Move the control Point to change a object)", "SEG", "Modify") End Sub Public Overrides ReadOnly Property ComponentGuid As System.Guid Get Return New Guid("8226e0ea-ed6b-47c2-8a24-244f044152d8") End Get End Property Protected Overrides ReadOnly Property Internal_Icon_24x24() As System.Drawing.Bitmap Get Return My.Resources.SEG_BrepDeform End Get End Property Protected Overrides Sub RegisterInputParams(ByVal pManager As GH_Component.GH_InputParamManager) ' pManager.AddTextParameter("Guid", "Id", "将要被替换的犀牛物件" & vbCrLf & "(RhinoObjects that will be replaced)", GH_ParamAccess.item) 'Dim guidParam As New Param_Guid pManager.AddParameter(New Param_Guid, "Guid", "Id", "将要被替换的犀牛物件" & vbCrLf & "(RhinoObjects that will be replaced)", GH_ParamAccess.item) pManager.AddPointParameter("ControlPoint3d", "C", "控制点的位置" & vbCrLf & "(Control Point's location)", GH_ParamAccess.item) pManager.AddPointParameter("NewPoint3d", "P", "新控制点的位置" & vbCrLf & "(New Control Point's location)", GH_ParamAccess.item) pManager.AddNumberParameter("Tolerace", "T", "输入点与物件实际控制点对比的精度" & vbCrLf & "(Tolerace for the Control Point match)", GH_ParamAccess.item, 0.1) pManager.AddBooleanParameter("BlMove", "M", "如果是True则进行移动" & vbCrLf & "(If true Perform the Move)", GH_ParamAccess.item, False) End Sub Protected Overrides Sub RegisterOutputParams(ByVal pManager As Kernel.GH_Component.GH_OutputParamManager) pManager.AddTextParameter("Result", "RG", "结果列表" & vbCrLf & "(Result)", GH_ParamAccess.list) End Sub Public Overrides ReadOnly Property Exposure As GH_Exposure Get Return GH_Exposure.primary End Get End Property Protected Overrides Sub SolveInstance(ByVal DA As Kernel.IGH_DataAccess) If Banner.astrict.showmessage Then Return Dim Ids As Guid = Guid.Empty 'Dim Ids As String = String.Empty Dim tpt As Point3d = Point3d.Unset, opt As Point3d = Point3d.Unset Dim tolar As Double = 0.1 Dim blMove As Boolean = False If Not DA.GetData(0, Ids) Then Return If Not DA.GetData(1, opt) Then Return If Not DA.GetData(2, tpt) Then Return If Not DA.GetData(3, tolar) Then Return If Not DA.GetData(4, blMove) Then Return If Not blMove Then GoTo line1 Reslist.Add(Now & "_未替换!(Replace failed!)") Else Reslist.Clear() ' Grasshopper.Instances.ActiveCanvas.ModifiersEnabled = False End If ' rt.AddRange(docobjlist.Select(Function(geoobj As RhinoObject) GH_Convert.ObjRefToGeometry(New ObjRef(geoobj.Id)))) 'Private Checked(5) As Boolean, Namestr() As String = {"Point", "Curve", "Brep", "Mesh", "TextDot", "TextEntity"} Try Dim rh As RhinoDoc = Rhino.RhinoDoc.ActiveDoc Dim rhobj As RhinoObject = rh.Objects.Find(Ids) ' Dim rhobj As RhinoObject = rh.Objects.Find(New Guid(Ids)) Dim bobj As BrepObject = CType(rhobj, BrepObject) RhinoApp.RunScript("Cancel", False) RhinoApp.RunScript("Cancel", False) bobj.Select(True) RhinoApp.RunScript("_SolidPtOn", False) Dim gobjs As GripObject() = bobj.GetGrips ' rh.Views.RedrawEnabled = False For Each grpobj As GripObject In gobjs If grpobj.CurrentLocation.DistanceTo(opt) < tolar Then grpobj.Select(True) Dim CurrentPln As Plane = RhinoDoc.ActiveDoc.Views.ActiveView.ActiveViewport.ConstructionPlane Dim tropt As New Point3d(opt), trtpt As New Point3d(tpt) tropt.Transform(Transform.PlaneToPlane(Plane.WorldXY, CurrentPln)) trtpt.Transform(Transform.PlaneToPlane(Plane.WorldXY, CurrentPln)) Dim movestr As String = "_move " + String.Format("{0},{1},{2} ", tropt.X, tropt.Y, tropt.Z) + String.Format("{0},{1},{2} _Cancel _Cancel", trtpt.X, trtpt.Y, trtpt.Z) RhinoApp.RunScript(movestr, True) grpobj.Select(False) End If Next 'RhinoApp.RunScript("Cancel", False) 'RhinoApp.RunScript("Cancel", False) '' rh.Views.RedrawEnabled = True Reslist.Add(Now & "_替换成功!(Replace Success!)") Catch ex As Exception Reslist.Add(Now & "_替换失败!(Replace failed!)" & vbCrLf & ex.Message) End Try ' Grasshopper.Instances.ActiveCanvas.ModifiersEnabled = True line1: DA.SetDataList(0, Reslist) End Sub 'Private Sub Testt_PingDocument(sender As IGH_DocumentObject, e As GH_PingDocumentEventArgs) Handles Me.PingDocument ' Dim Mbool = Aggregate bcbool In Checked Into cb = Any(bcbool) ' If Not Mbool Then ' Checked(0) = True ' Message = Namestr(0) ' Order = 0 ' End If 'End Sub End Class The picture below shows the two question. Question One I must use data dam, or the component can't batch deal the brep. I don't know why, I have You can give me a solution to make it working  normal not using the data dam Question Two  I can not uset the Button component, If I use it, the gh canvas will die with some mouse event--. I have see this problem before in this forum,but there is no solution and explain. I want to know why and How to solve it.  I don't know if I have made my question clear,if not give a message. Thank you! Thank you all. The gh test file and 3dm test file in the upload files. …
Added by huaxiamengqing at 2:02am on June 8, 2015
Blog Post: RGSS(rhino &amp; grasshopper study session)TOKYO #3

Added by Yusuke Oono at 8:26pm on July 28, 2009
Comment on: Event 'Parametric design of Grasshopper course in summer'
纹理过渡效果 Texture transition effects
Added by Jessesn at 8:30pm on June 6, 2012
Comment on: Topic 'Meilleur bookmaker'
こんにちは!日本で話題のplinkoを試してみたくてプレイしました。初めてプレイした時から、すぐにその楽しさに魅了されました。ゲームはシンプルなのに、次々に起こる予測不可能な展開にドキドキしっぱなし。数回プレイして、ついに大きな勝利を手に入れることができました!日本で手軽に楽しめるオンラインゲームを探しているなら、絶対にお勧めです!
Added by Aaron Delatorre to Jackalope at 10:35am on April 16, 2025
Blog Post: RGSS vol.32 Information

RGSS (rhino & grasshopper study session) Tokyo vol.32 will take place on 09 March.



Around 7pm, @…

Added by Yusuke Oono at 7:15pm on February 27, 2012
Blog Post: 毛竹和金属构件或者毛竹和再生金属在空间和人文环境中的重新排序(之一) Reordering of bamboo and metal or bamboo and recycled metal components in the human environment (one)

这个创作是用一些不同个体的逻辑方式,通过沟通和技能、技艺的执行,

作为可被认知的数学、物理、空间生产和艺术价值,为可能的相关领域铺就进步的台阶。

行为的过程大于结局,如同树与枝。

This creation is a logical way of communication and skills…

Added by zlyx at 1:10pm on September 29, 2011
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

About

Scott Davidson created this Ning Network.

Welcome to
Grasshopper

Sign In

Translate

Search

Photos

  • 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

  • Origami Crane

    Origami Crane

    by Parametric House 0 Comments 0 Likes

  • Add Photos
  • View All
  • Facebook

Videos

  • 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

  • Sunlight Exposure

    Sunlight Exposure

    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