try w_b.Refresh() instead of changing url. I’d also try to move checks/updates to a background thread.
yep, I was mistaken that it was just not documented
[b]showDialog [/b]<rollout> <boolean>
( url = @”http://speedtest.ftp.otenet.gr/files/test10Mb.db” wc = dotnetobject “System.Net.WebClient” fn get_download_data sender ev = ( for…
Only open verts should be used. Valid circular cap should have all radiuses of equal length and this is another thing we need to check when calculatin…
in my previous example we should check not the total distance sum but average distance since caps may have different number of vertices.
another one ( obj = snapshotAsMesh $ meshop.autoSmooth obj #{1..obj.numfaces} 89.9 smoothGroups = #() for i=1 to obj.numfaces…
just an idea maybe we can use smoothgroups to determine if mesh has two caps? and I think .numberset isn’t a way to go. using dot product of element a…
I think there’s a lot of corner cases possible: can it have zero height or four sides? can it have one or zero caps? can it be composed of multiple el…
I don’t know if it is possible. Maybe you can use speedBySurface as a substitution? btw.If all you need is a closest face normal then look for MeshP…
.row3 of particle TM but you’ll need to normalize it
try pflow instead of scatter you can easily get all transform data from particles ( – selection[1] is a pflow node obj = teapot radius:3…
what about a bit modified handmade binary search? fn binarySearchLowerIndex arr val = ( local count = arr.count local found = false…
how do you fire this event from external app?
What about organizing simple message queue in main thread and check for unhandled messages using dotnet timer? Background thread will only receive and…