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 - 河北福彩快三中奖规则『2TBH·COM』网上买时时彩输了好想死2023年3月19日5时23分51秒.H5c2a3.ngsxezjrd.gov.hk

Topic: 放射状のワッフルについて
を、rotateを使って、ジオメトリを中心にして円状に配置 ↓ ジオメトリとの交線を取ってサーフェスを張る という手順でいけると思います。 …
Added by FabCafe Tokyo to FabCafe Tokyo at 6:00am on October 2, 2014
Comment on: Video 'Custom unroller'
述主题和得到的成果性质以及水平的简单摘要。在二者中间的是报道、指示类文摘:这类文摘类型讲述的是一份文献里信息价值比较高的地方,而按照指示类文摘的形式去表达别的部分的摘要。通常来说科技文章都要尽可能的写成报道类文摘,但是综述类、资料类评论类的论文可以写成指示类或者报道、指示类文摘。…
Added by naasaki at 2:26pm on May 21, 2022
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
Event: DIGITAL TOOLING vol.2
ったことないけど興味がある方♥ ぜひおこしください。必ずハートに火が着きます-* どうやったらできるの?オススメ参考図書など、みんなで情報を共有する刺激的な勉強会です。 ” DIGITAL TOOLING は未来のつくるの勉強会 ” DIGITAL TOOLINGではRhinoceros、Grasshopperに限らずコンピューテーションを幅広くとらえ共有する関西での交流、勉強会です。 ◼︎今回のフードは「タコ焼き」を予定しています。 ◼︎ワンドリンク制 500円、2杯目以降 300円 ■ゲスト *鈴木雄貴 / AP-LENS http://suzuki11.tumblr.com/ UI/UXデザイナー 京都 北山のsoftdevice inc.に所属し、SD LABで空間・立体を素材とするインタフェースをデザインしている. 個人活動として、アーティストのメディア・オーサリングやパーソナルプロダクトのデザインをしている. 京都精華大学 プロダクトデザイン学科 PCDコース 卒業 情報科学芸術大学院大学(略称:IAMAS)メディア表現研究科(メディア表現 修士) 卒業  *砂山太一 http://tsnym.nu/ 建築家/美術家/プログラマ。 コンピュータメディアや先端技術を応用した芸術表現および理論の研究をしている。 その他、マテリアライジング展企画運営や kwwekやgh/eなどのアートユニットもてがける。 Ecole Speciale d’Architecture(パリ)マスター課程修了。多摩美術大学彫刻学科卒業。 JAKOB+MACFARLANE , Bollinger+ Grohmann Parisなどに勤務・協働。 2012-2013東京大学工学部非常勤講師。 現在、京都市立芸術大学総合芸術学科特任講師、工学院大学建築学部非常勤講 師、 東京藝術大学大学院美術研究科後期博士課程。 ■運営 *大前道久 OPH(おっさんパワーハウス) 15年間ジュエリーメーカーで勤務し、制作からデザインまで様々な部署を経験してきました。Grasshopperの恩恵を受け、新しい表現や効率的なモデリングを実践しています。私なりのコンピューテーショナルなジュエリー制作をご紹介したいと思います。 http://www.tukuru.me/?p=2426 *木山潤平 sacsac 代表 3Dプリンターやレーザーカッターなどのデジタル工作機を使える場所を運営。これまでアナログのモノづくりに没頭してきたことを活かし、デジタルとアナログの間に立って、アウトプットできる環境を提供していきたいと思います。DIGITAL TOOLING(DT)を機にGrasshopperを勉強している初心者です。みなさん一緒にはじめましょう! FBページ https://www.facebook.com/events/886427334718542/…
Added by Michihisa Omae at 5:51am on September 23, 2014
Page: Tutorials
Introduction to Grasshopper Videos by David Rutten. Wondering how to get started with Grasshopper? Look no further. Spend an some time with the creator of Grasshopper, David Rutten, to learn the
Added by Scott Davidson at 3:50pm on May 12, 2009
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

About

Scott Davidson created this Ning Network.

Welcome to
Grasshopper

Sign In

Translate

Search

Photos

  • Spiral Stair

    Spiral Stair

    by Parametric House 0 Comments 0 Likes

  • Millipede Kangaroo

    Millipede Kangaroo

    by Parametric House 0 Comments 0 Likes

  • Inflate Mesh

    Inflate Mesh

    by Parametric House 0 Comments 0 Likes

  • cover

    cover

    by Parametric House 0 Comments 0 Likes

  • Parametric Structure

    Parametric Structure

    by Parametric House 0 Comments 0 Likes

  • Add Photos
  • View All
  • Facebook

Videos

  • Spiral Stair

    Spiral Stair

    Added by Parametric House 0 Comments 0 Likes

  • Millipede Kangaroo

    Millipede Kangaroo

    Added by Parametric House 0 Comments 0 Likes

  • Inflate Mesh

    Inflate Mesh

    Added by Parametric House 0 Comments 0 Likes

  • Voronoi Roof

    Voronoi Roof

    Added by Parametric House 0 Comments 0 Likes

  • Parametric Structure

    Parametric Structure

    Added by Parametric House 0 Comments 0 Likes

  • Tensile Column

    Tensile Column

    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