Tom Van Mele

Results 194 comments of Tom Van Mele
trafficstars

yes, the labeling functionality is indeed not fully updated yet. will try to fix asap. in the meantime, something like this should work... ```python from compas.datastructures import Mesh from compas_plotters.plotter...

sure but perhaps this can be part of COMPAS 2.0?

the default precision by which these files are currently processed is the default precision of compas, which is `0.001`. for STL files this is certainly to low. it should be...

the current implementation is indeed limited and not very flexible. afaik it can only be used in one specific way. however, this will go away when rebasing onto the new...

it is a getter and there is currently no setter, but i will remove the `get_` and combine them like in the rest of compas...

cool. travis is no liking it though :)

you are right. the docs are a bit behind and do not reflect the latest changes. working on it now. will push updates regularly throughout the week...

yes this broke during one of the intermediate updates but will come back indeed.

the bounding box is (or should be) a "structured" object. does the following not work for you? ```python box = mesh.bounding_box() bottom = box[:4] top = box[4:] bottom_diagonal = bottom[0],...