Tom Van Mele

Results 195 comments of Tom Van Mele

there is a WIP function for this in the latest release `compas.datastructures.mesh_merge_faces`. it still seems to fail in some cases, but perhaps you could try it out and let me...

that is a bug indeed. will have a look...

seems to work now... ```python from compas.datastructures import Mesh from compas_plotters import MeshPlotter mesh = Mesh.from_vertices_and_faces([[0, 0, 0], [1, 0, 0], [1, 1, 0], [0, 1, 0]], [[0, 1, 2,...

did Rhino change that name or did you? :) because i have `Rhinoceros.app` and `RhinoWIP.app`...

i guess that would make sense. perhaps i just provide an alias for now and a deprecation warning such that it is not a breaking change and can already be...

could you not just use `compas.numerical.pca_numpy` and use the origin and first axis of the pca?

i guess we should indeed provide a wrapper as with the other bestfit functions

i can send a PR later today so you can test if that is what you are looking for

@gonzalocasas smack on the money, in my opinion!

the behaviour is indeed typical Python. and one could argue that providing an empty list as default attribute value is a bit nonsensical: as recommended in Python, if you want...