Grasshopper

generative modeling for Rhino

Daniel
  • Male
  • Seoul
  • Korea, Republic of
Share on Facebook
Share Twitter
  • Blog Posts
  • Discussions (18)
  • Events
  • Groups
  • Photos
  • Photo Albums
  • Videos

Daniel's Discussions

mesh problems

Hi...I'm try to get outlines from brep, using mesh and plane.When I use Mesh component in Grasshopper, it works well and correct,but VB component as below, it does not worked well. ----Private Sub…Continue

Started on Saturday

Error in making Polylinecurve
2 Replies

Hello..... I need help ...please.I tried two methods to make Polylinecurve but failed...1.Dim p0 As New Point3d(0, 0, 0) Dim p1 As New Point3d(0, 0, 100)Dim p2 As New Point3d(0, 100, 100)Dim…Continue

Started this discussion. Last reply by Daniel May 2, 2012.

Is it possible to make grasshopper component in 'dll' form and install file?
1 Reply

Dear,Is it possible to make grasshopper component in 'dll' ? Thank you, Continue

Started this discussion. Last reply by David Rutten Apr 12, 2011.

Safety about Code
1 Reply

Hi.... Finally, I completed my personal utility using Grasshopper SDK.and I added system sheck when the Component loading.So, I have a question about, if the component is safe for reverse…Continue

Started this discussion. Last reply by David Rutten Mar 3, 2011.

 

Daniel's Page

Latest Activity

Daniel posted a discussion

mesh problems

Hi...I'm try to get outlines from brep, using mesh and plane.When I use Mesh component in Grasshopper, it works well and correct,but VB component as below, it does not worked well. ----Private Sub RunScript(ByVal x As Brep, ByVal y As Plane, ByRef A As Object)    Dim ms As mesh()    Dim mp As rhino.Geometry.MeshingParameters        mp = rhino.Geometry.MeshingParameters.Default    mp.Tolerance = 0.001    mp.JaggedSeams = False    mp.RelativeTolerance = 0.001    ms =…See More
Saturday
Daniel replied to Daniel's discussion Error in making Polylinecurve
"Thank you.. David..."
May 2, 2012
David Rutten replied to Daniel's discussion Error in making Polylinecurve
"Hi Daniel, try making a Polyline instead of a PolylineCurve. Polyline is easier to work with, and you can always convert it into a PolylineCurve later if you really want to. -- David Rutten david@mcneel.com Poprad, Slovakia"
May 2, 2012
Daniel posted a discussion

Error in making Polylinecurve

Hello..... I need help ...please.I tried two methods to make Polylinecurve but failed...1.Dim p0 As New Point3d(0, 0, 0) Dim p1 As New Point3d(0, 0, 100)Dim p2 As New Point3d(0, 100, 100)Dim temPolyCrv As New PolylineCurve() ==> failed here.temPolyCrv.SetStartPoint(p0)temPolyCrv.SetPoint(1, p1) 2.Dim pts As New List(Of Point3d) Dim p0 As New Point3d(0, 0, 0) Dim p1 As New Point3d(0, 0, 100) Dim p2 As New Point3d(0, 100, 100) pts.add(p0)pts.add(p1)pts.add(p2)Dim…See More
May 2, 2012
David Rutten replied to Daniel's discussion Is it possible to make grasshopper component in 'dll' form and install file?
"Hi Daniel,   no. If you want Grasshopper to load custom components, they have to be a *.gha file. But GHA is just a DLL with a different extension.   Start Rhino and run the _GrasshopperGetSDKDocumentation command. This should download a…"
Apr 12, 2011
Daniel posted a discussion

Is it possible to make grasshopper component in 'dll' form and install file?

Dear,Is it possible to make grasshopper component in 'dll' ? Thank you, See More
Apr 12, 2011
David Rutten replied to Daniel's discussion Safety about Code
"Hi Daniel,   never. All code can be disassembled. There are steps you can take to make it harder to get legible code. The easiest way to look at .NET code is via Reflector.exe and the easiest way to obfuscate .NET code is via…"
Mar 3, 2011
Daniel posted a discussion

Safety about Code

Hi.... Finally, I completed my personal utility using Grasshopper SDK.and I added system sheck when the Component loading.So, I have a question about, if the component is safe for reverse engineering. ??Please... See More
Mar 3, 2011
Daniel replied to Daniel's discussion Receive multiple Curve and Point in RhinoCommon
"Dear, David I found 'Memory Load ..' option in _grasshopperDeveloperSettings.. and Disabled the Memory Load,... and add the path to the project's bin(debug fold) But,, stil not easy.. Should I have to start debug using 'dll file?…"
Feb 27, 2011
Daniel replied to Daniel's discussion Receive multiple Curve and Point in RhinoCommon
"Dear, David, I copied the component file to the "components folder",.. Please, where is 'Memory load... ' option?.. I tried to search SDK help, but It is not easy to find one..."
Feb 27, 2011
David Rutten replied to Daniel's discussion Receive multiple Curve and Point in RhinoCommon
"Hi Daniel,   how are you loading your gha file? Are you moving/renaming it by hand? Did you disable the 'Memory load...' option in _GrasshopperDeveloperSettings?   -- David Rutten david@mcneel.com Poprad, Slovakia"
Feb 27, 2011
Daniel posted a discussion

Receive multiple Curve and Point in RhinoCommon

Dear, DavidI'm now try to debug my code, but grasshopper VB.net solution was not possible to debug. So, I tried to convert it to rhinocommon plug-in.But, some problems.. as is my code,..it does not work when I debug... Dim filter As Rhino.DocObjects.ObjectType = Rhino.DocObjects.ObjectType.Curve Dim objref As Rhino.DocObjects.ObjRef = Nothing Dim rc1 As Rhino.Commands.Result = Rhino.Input.RhinoGet.GetOneObject("Select ACurve", False, filter, objref) If rc1 <>…See More
Feb 27, 2011
David Rutten replied to Daniel's discussion List of Double, or List of Point3d and Data retreive
"I can retrofit the data layout of outputs, so there's no need to set the access type. All you have to do is either call   DA.SetData()   or   DA.SetDataList()   depending on what you want to output.   -- David…"
Feb 13, 2011
Daniel replied to Daniel's discussion List of Double, or List of Point3d and Data retreive
"Dear, David Thank you very much,,.. Input Paramater works well.   But, OutPut parameter was different. Protected Overrrides Sub Register…"
Feb 13, 2011
David Rutten replied to Daniel's discussion Intersection curve-curve in grasshopper sdk
"Hi Daniel,   this is the signature of the RayShoot function:   Public Shared Function RayShoot(ByVal ray As Ray3d, ByVal geometry As IEnumerable(Of GeometryBase), ByVal maxReflections As Int32) As Point3d()   The second argument…"
Feb 13, 2011
Daniel replied to Daniel's discussion Intersection curve-curve in grasshopper sdk
"Hi David Thank you very much. May I ask one more help? about RayShoot    Private Sub RunScript(ByVal pt As Point3d, ByVal v As Vector3d, ByVal s As Surface, ByRef A As Object)     'your code goes…"
Feb 13, 2011

Profile Information

Company, School, or Organization
Self Study

Comment Wall

You need to be a member of Grasshopper to add comments!

Join Grasshopper

  • No comments yet!
 
 
 

Translate

Search Grasshopper

Photos

  • Add Photos
  • View All

Videos

  • Add Videos
  • View All

© 2013   Created by Scott Davidson.   Powered by

Badges  |  Report an Issue  |  Terms of Service