Grasshopper

generative modeling for Rhino

Madu Mohan
  • Male
  • London
  • United Kingdom
Share on Facebook
Share Twitter
  • Blog Posts
  • Discussions (28)
  • Events
  • Groups
  • Photos
  • Photo Albums
  • Videos

Madu Mohan's Friends

  • robert cervellione
  • Jon Mirtschin

Madu Mohan's Discussions

Plane Normal to Curve Question
2 Replies

Hi All,I have a question regarding Rhinos Plane normal to curve function.When creating a plane normal to curve it uses the tangent vector at a specified point for the Z axis of the plane.  By default…Continue

Started this discussion. Last reply by Madu Mohan Mar 27.

C# brep assigning error
1 Reply

Hi David and all,I have a question regarding the c# component.In the input x i have a list of brep surfaces with type hint list of brep.inside the code i would like do the follow;Brep brp = new…Continue

Started this discussion. Last reply by David Rutten Mar 18.

c# Brep Loft two circles
2 Replies

Hi All,I'm a bit held up at the moment in C# trying to loft two circles together.I am using the Brep.CreateFromLoft() Function and what I have is as follows://Input from GH of two circles as a…Continue

Started this discussion. Last reply by Madu Mohan Feb 25.

How to un-cluster?
1 Reply

Hi All, Can anyone shed light on un-clustering a group of components in GH?I know you can right click on the cluster and open it in a new tab - however I have not been able to figure out how to…Continue

Started this discussion. Last reply by Danny Boyes Aug 28, 2011.

 

Madu Mohan's Page

Latest Activity

Madu Mohan replied to Madu Mohan's discussion Plane Normal to Curve Question
"Hi Danny,  Thanks for the reply.   Yes it seems that there is not a clear answer here. Its an important one to understand clearly as in the Design to Production pipeline this has quite an impact on how you generate and extract information…"
Mar 27
Danny Boyes replied to Madu Mohan's discussion Plane Normal to Curve Question
"That is the million dollar question. I have seen numerous discussions along those lines here in the forums but have yet to see a definitive answer. You can even use different plane generating components that on the face of it have the same…"
Mar 26
Madu Mohan posted a discussion

Plane Normal to Curve Question

Hi All,I have a question regarding Rhinos Plane normal to curve function.When creating a plane normal to curve it uses the tangent vector at a specified point for the Z axis of the plane.  By default how is the X an Y axis then calculated in rhino? Thanks !See More
Mar 26
David Rutten replied to Madu Mohan's discussion C# brep assigning error
"Hi Madu, you don't need to create a new Brep, you already have breps. Your code should look like this: -- David Rutten david@mcneel.com Poprad, Slovakia"
Mar 18
Madu Mohan posted a discussion

C# brep assigning error

Hi David and all,I have a question regarding the c# component.In the input x i have a list of brep surfaces with type hint list of brep.inside the code i would like do the follow;Brep brp = new Brep();brp = x[1];However i keep receiving the error below:Error: 'Rhino.Geometry.Brep.Brep(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingCOntext)'is inaccessible due to its protection level'is this a syntax error on my end, I would imagine this should be fairly…See More
Mar 18
Madu Mohan replied to Madu Mohan's discussion c# Brep Loft two circles
"Hi Giulio, Thank you for the info, works very well. If you don't mind I have one more question regarding C# coding. I'd like to have a way to covert lower values into higher ones in C#. In the image below you can see i achieved this…"
Feb 25
Giulio Piacentino replied to Madu Mohan's discussion c# Brep Loft two circles
"Hi Madu, CreateFromLoft needs as first argument: a list, an array or any IEnumerable set of Curves. Now, a List<Circle> is not fulfilling this requirement and therefore achieving its mission because Circle is not a Curve. In RhinoCommon, only…"
Feb 24
Madu Mohan posted a discussion

c# Brep Loft two circles

Hi All,I'm a bit held up at the moment in C# trying to loft two circles together.I am using the Brep.CreateFromLoft() Function and what I have is as follows://Input from GH of two circles as a List<Circle> listcircBrep[] myBrep = Rhino.Geometry.Brep.CreateFromLoft(listcirc,Point3d.Unset, Point3d.Unset, 0, False);A = myBrepAn error comes up saying the name 'False' does not exist in the current context.Any help would be greatly appreciated.ThxSee More
Feb 23
Danny Boyes replied to Madu Mohan's discussion How to un-cluster?
"Not as yet. You will need to open the new canvas and then copy the components to the existing one and re-connect."
Aug 28, 2011
Madu Mohan posted a discussion

How to un-cluster?

Hi All, Can anyone shed light on un-clustering a group of components in GH?I know you can right click on the cluster and open it in a new tab - however I have not been able to figure out how to uncluster the cluster in the current gh def. Many thanks!See More
Aug 28, 2011
Madu Mohan posted a discussion

Panel classification

Dear All, Has anyone done any work in developing panel classification tools?Some type of tool to search through a set of surfaces (panels) and distinguish between flat, single, and double curve types?  I havn’t dove in yet but heres my thoughts before starting: Option 1.-Loop through each panel in set-Perform a Gaussian curvature analysis on each panel.-Dispatch panel to flat, single, double curved based on Gaussian values Option 2.- Loop through each panel in set-Analyze the U & V…See More
Mar 6, 2011
David Rutten replied to Madu Mohan's discussion Base CODE for writing a RhinoCommon Plugin in R5
"Not all of it, I can find five places in the Vector3d type where it calls into unmanaged (C++) code. IsTiny, Unitize, Rotate, IsParallelTo & PerpendicularTo all place calls to the UnsafeNativeMethods class which contains…"
Feb 2, 2011
Steve Lewis replied to Madu Mohan's discussion Base CODE for writing a RhinoCommon Plugin in R5
"Thanks david. So I gues those operations that dont need to call Rhino, and are open, can be implemented within some one else's custom code. For instance, could I the RhinoCommon vector class in any vector geometry claculcations used in the…"
Feb 1, 2011
David Rutten replied to Madu Mohan's discussion Base CODE for writing a RhinoCommon Plugin in R5
"ps. Only part of RhinoCommon is Open Source. The C# part. The C++ part I think we kept closed, at least for now.   -- David Rutten david@mcneel.com Poprad, Slovakia"
Feb 1, 2011
David Rutten replied to Madu Mohan's discussion Base CODE for writing a RhinoCommon Plugin in R5
"Because RhinoCommon is nothing more than a layer. A thin veneer of pure awesomeness around the Rhino C++ core. When you use a SurfaceSurface intersector, or a Curve Closest Point finder, the actual geometry and function calls all happen in the Rhino…"
Feb 1, 2011
Steve Lewis replied to Madu Mohan's discussion Base CODE for writing a RhinoCommon Plugin in R5
"Hi David   call me stupid, but if rhinocommon is now open source, why do we still need to run the rhino application to use any rhino common methods one might use in a custom class library which references rhinocommon classes such as a…"
Jan 31, 2011

Profile Information

Company, School, or Organization
MM Design

Comment Wall

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

Join Grasshopper

  • No comments yet!
 
 
 

Translate

Search Grasshopper

Members

Photos

  • Add Photos
  • View All

© 2012   Created by Scott Davidson.   Powered by

Badges  |  Report an Issue  |  Terms of Service