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 - 728彩票是骗人的吗-『1TBH·COM』米兜彩票安全--2023年3月19日6时29分42秒.H5c2a3.pwzo1mzoa-cc

Comment on: Group 'FabCafe Tokyo'
;usp=sharing今回のお題は、3次元での繰り返しパターンです。前回の宿題は2次元の繰り返しパターンでした。それに高さ情報を与えるなど工夫して、3次元的な繰り返しのパターンのファイルを作ってみましょう。…
Added by FabCafe Tokyo to FabCafe Tokyo at 5:58am on February 14, 2015
Event: DIGITAL TOOLING vol.1
を進める。 後半で行われるコン ピュテーショナル・デザインの技術を使った料理の展開を紹介し、試食も行います。 ■第2部18:00~21:00(ワンドリンク制 ¥500) RGSS KANSAI(仮) 昨今、デザインの最先端で見られるようになったコンピューテーショナルデザイン。 すでにスタジアムや大型建築、プロダクトデザインなどの分野で認知されてます。デザイナやデザイナを目指す人達には今後必須の技術と言えるのではないでしょうか。 RhinocerosとGrasshopperをつかえば、今までプログラムの知識が必要だったアルゴリズミックな3Dデザインもスクリプティングを要さず生み出すことができます。 首都圏では数年前からRGSS(コンピューテーショナルデザインのコミュニティ)が存在し日本におけるコンピューテーショナルデザインの裾野を拡げています。 コンピューテーショナルデザインに関する技術や知識の交流が発生し、関西におけるデザイン技術の底上げを期待しています。 当日は2~3名のプレゼンテーションを予定。まずはキックオフ的にはじめてみて、続けていくことで形作っていければと思います。  大前 道久 OPH(おっさんパワーハウス)主催  15年間ジュエリーメーカーで勤務し、  制作からデザインまで様々な部署を経験してきました。  Grasshopperの恩恵を受け、新しい表現や効率的な  モデリングを実践しています。  私なりの、コンピューテーショナルなジュエリー制作を  見ていただきたいと思います。 FBイベントページ:https://www.facebook.com/events/709226442478364/…
Added by Michihisa Omae at 9:09pm on August 23, 2014
Blog Post: jg

Added by zlyx at 7:24pm on February 20, 2012
Blog Post: RGSS(rhino & grasshopper study session)TOKYO #3

Added by Yusuke Oono at 8:26pm on July 28, 2009
Topic: 次回までの宿題について
皆さんこんにちは 次回のD、Eクラスに参加される方は、是非宿題をやって、こちらのフォーラムに投稿してください。授業内で紹介したいと思います! 宿題の内容は、「3Dのパラメトリックモデリングを作る」です。自分が今まで得たテクニックを用いて、パラメータを変更することでモデルが変化するグラスホッパーファイルを作ってください。どんなものでも結構です! よろしくお願いします! 堀川
Added by Junichiro Horikawa to FabCafe Tokyo at 10:55pm on September 22, 2014
Event: FREEFORM Rhinoceros + Grasshopper
esign può essere raggiunta attraverso un controllo profondo delle forme complesse. Il corso FreeForm intende offrire ai partecipanti una sessione di studio intensiva sulle principali tecniche di modellazione con Rhinoceros e l'esplorazione delle possibilità offerte dalla modellazione algoritmica/parametrica con Grasshopper. Le tecniche verranno acquisite attraverso lezioni frontali e sviluppo di casi studio paradigmatici. Il workshop è rivolto a studenti e professionisti con conoscenze base di disegno digitale. Sarà rilasciato un attestato di partecipazione firmato da Arturo Tedeschi in qualità di Authorized Rhino Trainer.…
Added by Arturo Tedeschi at 9:08am on June 6, 2015
Topic: 放射状のワッフルについて
を、rotateを使って、ジオメトリを中心にして円状に配置 ↓ ジオメトリとの交線を取ってサーフェスを張る という手順でいけると思います。 …
Added by FabCafe Tokyo to FabCafe Tokyo at 6:00am on October 2, 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
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
Blog Post: Start point and curve





Added by zlyx at 4:22am on July 20, 2010
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

About

Scott Davidson created this Ning Network.

Welcome to
Grasshopper

Sign In

Translate

Search

Photos

  • Kangaroo Pavilion

    Kangaroo Pavilion

    by Parametric House 0 Comments 0 Likes

  • Attractor Bricks

    Attractor Bricks

    by Parametric House 0 Comments 0 Likes

  • Tensile Structure

    Tensile Structure

    by Parametric House 0 Comments 0 Likes

  • Circle-Pack facade

    Circle-Pack facade

    by Parametric House 0 Comments 0 Likes

  • Bezier Curve Opening Pavilion Rhino Grasshopper Tutorial

    Bezier Curve Opening Pavilion Rhino Grasshopper Tutorial

    by June Lee 0 Comments 0 Likes

  • Add Photos
  • View All
  • Facebook

Videos

  • Kangaroo Pavilion

    Kangaroo Pavilion

    Added by Parametric House 0 Comments 0 Likes

  • Attractor Bricks

    Attractor Bricks

    Added by Parametric House 0 Comments 0 Likes

  • Tensile Structure

    Tensile Structure

    Added by Parametric House 0 Comments 0 Likes

  • Circle-Pack facade

    Circle-Pack facade

    Added by Parametric House 0 Comments 0 Likes

  • Bezier Curve Opening Pavilion Rhino Grasshopper Tutorial

    Bezier Curve Opening Pavilion Rhino Grasshopper Tutorial

    Added by June Lee 0 Comments 0 Likes

  • Tensile Structure

    Tensile Structure

    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