Convert closed curve to surface
@obakatsu wrote: Hi everyone! I am trying to write python script which convert closed curve to surface.Can someone tell me how I can write those script using rhinoscriptsyntax? Thank...
View ArticleSplit surface and select surface which has biggest area
@obakatsu wrote: Hi everyone! I am trying to write script which split surface and select surface which has biggest area from splitted surfaces.Script is following.But I get error message "'NoneType'...
View ArticleStartupFileList regkey error
@Keith1634 wrote: When I manually add my startup script path to the StartupFileList regkey then rhino does not recognise it when opening and the Document Properties RhinoScript dialogue remains empty....
View ArticleAdd points in python
@brobes05 wrote: Hello, I am failing to add points. I know i need to match the data somehow or deconstruct the points, but I'm drawing a blank. I am using GH Python. import rhinoscriptsyntax as rs a =...
View ArticleRhinocommon Join Meshes
@lawrenceyy wrote: Let's say I generate a bunch of meshes from vertices in python using rhinocommon. What method do I use to join them? Posts: 5 Participants: 3 Read full topic
View ArticlePython recursion simple error
@brobes05 wrote: Hi, I am confused as to why this code is not working. I believe it has to do with the fact that Rhino draws circles with radii rather than diameter. I am simply trying a simple...
View ArticleAdd rhino, system, and GH sdk to rhino reference
@brobes05 wrote: Is it possible to add rhino common aka 'import rhino.geometry etc., system, and GH package references to the help/reference menu? thanks, Erik reference PNG.PNG734x465 14.6 KB Posts:...
View ArticleSaving input integer
@cadguy wrote: Saving a variable intAmount_ev = Rhino.GetSettings(Rhino.InstallFolder & "Gelfling.ini", "AdvancedDivideCurves", "Amount_ev") If IsNull(intAmount_ev) Then intAmount_ev = 1 Else...
View ArticleProblem with surface Domain
@Cyver wrote: Hi all, I'm trying to extract isocurve from surface center, like that : Call Main() Sub Main() Dim strObject, arrDomainU, arrDomainV, arrParam(1), arrPoint, arrParameter, ArrDir...
View ArticleScript to connect 2 curves
@vag wrote: Hi,I am trying to write a script to connect 2 curves called a1 and a2 from the command line (something like _connect a1 a2 EnterCan anyone help me please?Thanks for your time Posts: 2...
View ArticleGetAngle method problem
@AleksandarSM wrote: Hello, I dont know if I'm doing something wrong, when I try Get Angle method example from: developer.rhino3d.com Get Angle Demonstrates how to interactively pick an angle given a...
View ArticleAutomatically apply any rhinomaterial to each of all the layers and copy the...
@Eiszeitt wrote: Hey guys. I want to export my rhino model as .fbx to open it in 3ds max. Sadly there is not any layer exported just material. My model has over 200 layers and layer names change...
View ArticleIsValid: Brep vs. components
@spb wrote: When a brep's IsValid is False, shouldn't the relevant components' IsValid also be False? Running the following code on the breps in IsValid.3dm (32.0 KB) shows where this is not the case....
View ArticleBlock Tools: Open Source scripts for easing life with blocks
@ejnaren wrote: 3 new tools for working with blocks: Find them here:https://github.com/ejnaren/rhinotools ResetBlockScale:Resets the scale of a block, keeping the rotation around the insertion...
View ArticleGet Usertext from object in a Block
@NavArch wrote: Hi there,I'm trying to figure out how to access usertext info for a selected object inside a block. The block is created by a separate user and I am inserting their file (embed/link)...
View ArticleCount curve length in layer
@Maxim wrote: Hey there!I working on a script for curve length measure.I need to select layers by names, measure length and than create text object with that values.I have 4-5 layers names (more or...
View ArticleMultithreading a function issues
@djordje wrote: Hi. Is it possible to multithread a function which takes a couple of lists as an input, where each of those lists have a couple of thousands of items (8760 in this case)? Here is an...
View ArticleFilter/remove empty lists Python
@Mertzi wrote: Hey,Im quite new to python and have some issues with what I presume really is a quite easy task..?Im trying to import a file and filter out (get rid of) all the empty lists so that the...
View ArticleScripcontext.escape_test crashes Rhino
@arquitextonica wrote: I made a small branching exercise in python that can lead to a near-infinite loop. Is very light but I used escape_test to be able to break it.My problem is that it sometimes...
View ArticleInterpolate Points
@lawrenceyy wrote: I've been given a set of points derived from real-world measurements, but it is apparent that some points are missing. How can I interpolate the points I do have to estimate the...
View Article