Join Mesh by Touching a certain color
@jmoo wrote: How can I make a mesh join another mesh if its touching a certain color? basic principle: If black mesh is touching red mesh, join. Posts: 4 Participants: 3 Read full topic
View ArticleBatch save Python script on a Mac
@markgtaber wrote: I'm trying to write a batch open and save script in Python to run on a Mac. I'd like it to open and saveas (or export) files automatically without input from the user. The best I...
View ArticleCreating Plugin from Rhino Python - file output problem
@nickp1 wrote: I created a plugin from a debugged and working Python script. Initially the plugin did not execute as the original script and terminated before running to completion. The original...
View ArticlePull Grips / Controlpoints to Curve or Surface
@Willem wrote: Hi As per request in another topic I translated 2 scripts from VB to Python to work on Both Windows and Mac: PullGripsToCurve.py (741 Bytes) PullGripsToSurface.py (727 Bytes) The script...
View ArticlePrecision orbiting out of ortho
@JKayten wrote: I've mentioned this before. There's another user that also spoke of a feature that would be very useful when dealing with fine detail; that is the ability to turn out of an ortho view...
View ArticleGet the index of a BREP vertex in Rhinocommon
@jeffoulet wrote: Hi all, I'm really new to Python/Rhinocommon and I'm trying to get the index of a BREP vertex by picking it. I've already this code, but it only returns the index of the edge where...
View ArticleMirror transformation
@Sachin_Saxena1 wrote: Can anyone please help me out with the mirror transformation in Rhino python ?As of now I have come across a command Rhino.Geometry.Transform.Mirror(point, normal) ,but I am...
View ArticlePython nested list help
@djnelson75 wrote: import rhinoscriptsyntax as rs LineList = x PtList = y result=[] count = 0 for a in LineList: for b in PtList: test = rs.IsPointOnCurve(a,b) result[count].append(test) count += 1 a...
View ArticleHow to convert text dot to predictable, usable curves?
@cbass wrote: Hi everyone, I need to streamline my process. I’m starting with text dots. I need to convert them to a specific font for CNC engraving (the font can only be comprised of closed curves,...
View ArticlePolylineCurve with CurveSelf Intersection not acting as expected
@AndersDeleuran wrote: Hi All, I'm trying to wrap my head around how the Rhino.Geometry.Intersect.Intersection.CurveSelf class deals with Polyline Curves. See images below and attached files for case...
View ArticleDisplayPipeline.isVisible() in Python?
@SmallChief wrote: Hi,I am trying to do a simple visibility check in Python with the following code: import Rhinoimport rhinoscriptsyntax as rs a = rs.GetObject()print...
View ArticleText block is a curve?
@maxz wrote: Hi,I am trying to project a random selection of objects onto a surface, using the PullCurve function. Since projection is only possible for curves, and will generate an error message when...
View ArticlePrecise Panning
@benjamin wrote: Hi, Just exploring if panning is scriptable in Rhino 5.0, as there are no commands for precise panning. It would be very useful for arranging drawings in detail views for layout. For...
View Article"Could not convert argument 0 for call to Open" error
@djordje wrote: Hello, I am currently struggling to call a method from loaded .dll assembly. Assembly is a part of WinMapGIS and Map Window open source projects for manipulation of GIS data. The...
View ArticleArc tangent to 3 curves
@detlef_mueller wrote: Hi, I tried to achieve something like this by python. I have a number of curves(1) which are ending on another curve(2) and want to get the curves(1) connected by an arc which...
View ArticleGuitar fret slot positioning
@oliver55000 wrote: I'm relatively new to python, and have started learning for the above reason. I want to be able to model guitar necks (and then cut on a CNC router) relatively quickly, but most of...
View ArticleFind polysurface guid from sub-surface selection?
@egradman wrote: Using Rhino.Common, I can prompt the user to select a sub-surface of a polysurface (which I'm adding to the document for further manipulation). How can I obtain a reference to the...
View ArticleUsing WScript object method to get script path
@krsnadas wrote: I read somewhere that WScript methods GetScriptName and GetScriptFullName don't work for Rhinoscript. I want to confirm if this is true and if there is some other way to get the path...
View ArticleUsing SetPt to move grips in python script
@Telfer_Scott wrote: I'm having some trouble getting this python script to work. In brief, in want to be able to select a subset of grip points from a mesh object, and move them all so their z...
View ArticleRedraw and Layers panel
@Jarek wrote: I have noticed that the EnableRedraw method will not only redraw the vieports but also seems to be affecting the layers panel. I can see that the selected layer is 'flickering' on each...
View Article