Roberto Saccon

Results 40 comments of Roberto Saccon

Very clever. Works perfectly. Thanks a lot.

That would be great. On one blender addon I messed around with, I had a reimport of everything as soon as a filechange on a monitored directory was detected (by...

Just an update to me previous comment: the watch-directory-and-reimport-on-filechange addon I was using, here is the [link to it](https://github.com/addam/Export-Paper-Model-from-Blender/blob/master/watch.py)

I cannot try the example (I am on Blender 3.6, on newer Blender my graphic card is not supported), but looking at the code, especially the signature of `my_sym`, it...

Thanks a lot for the clarifications. When I have something to show, I will post it here.

I tried to implement the access to `connectd_edges` for every vertice in `v.vertices`, but I ran into several issues. I used the same data as in the `examples/bounding_polygon.py`, but for...

Update on wrong connected edge: I digged a bit into the voronoi code, changed the following : https://github.com/Yatoom/voronoi/blob/45d27f8790d43502fb8cff9ace54e042663e5f46/voronoi/algorithm.py#L292-L293 to: ``` new_edge = HalfEdge(B, origin=updated, twin=HalfEdge(C, origin=v)) v.connected_edges.append(new_edge.twin) ``` Now it...

It works perfect now. The only issue I still have to work around is the second one, neighbouring vertices on boundary, which have identical position. I collect all their connected...

Great, thanks, looking forward to update it to the latest !

@Yatoom, I am having one more question: is there a way `voronoi` can help in setting a constraint for a user specified minimum edge length ? I have been experimenting...