Onur R. Bingol

Results 36 comments of Onur R. Bingol

@GarthSnyder thanks for the bug report. I am guessing it would be a good idea to add a try-except block for `ZeroDivisionError` on line 616. Line 615 initializes the array...

It looks like changing the input degree also fixes the issue. ``` curve = fit.approximate_curve(points, 4) # tested with 2, 3, 4, 6 ``` Is there a specific reason for...

`compute_params_curve` needs to compute the chord length and when there is a singularity, the chord length becomes zero. I think there are 2 things to do: 1. It might not...

I'll need to test for Option 1. I am not sure if it will even work. The concept of chord length breaks the idea of singularity. However, it looks possible...

> Usually in NURBS algorithms, if you're encountering 0/0, you just say it is 0, and algorithm works fine. Does this trick help here? I was thinking the same thing...

`ZeroDivisionError` occurs when `d == 0`. If `sum(cds[0:i + 1]) == 0` and `d != 0`, it will evaluate to `0`. I think it would be enough to update the...

I'd like to thank @portnov for the help. Actually, I like Sverchok and Blender, and I have been recommending Sverchok to many of my friends since I discovered it. For...

Thanks for the bug report. `copy.copy` and `copy.deepcopy` won't copy the caches (defined in `abstract.GeomdlBase`) but it seems it won't reinitialize the caches too. I think removing `[:]` should work...

I have some questions: 1. I see that you are using `VisOCC` class in your example. Is that the same with `VisMPL`? Did you make any changes? If so, would...

I understand. Thanks for the report @ghareth. Just a small question, something is not clear to me. You wrote > geomdl install source: installed via github clone using cython in...