compas icon indicating copy to clipboard operation
compas copied to clipboard

Core packages of the COMPAS framework.

Results 182 compas issues
Sort by recently updated
recently updated
newest added

**Describe the bug** https://github.com/compas-dev/compas/blob/f85415822840eb6c7223698446c335cef06ce55e/src/compas/datastructures/volmesh/volmesh.py#L173C1-L173C78 I guess, `"cell_data": {str(cell): attr for cell, attr in self._cell_data},` needs to be changed to `self._cell_data` **To Reproduce** ```python from compas import json_dump from compas.datastructures import...

Updated uninstall to match install, like here: cbe33b4d38e344953286ff41556d985dda5b212c ### What type of change is this? - [x] Bug fix in a **backwards-compatible** manner. ### Checklist _Put an `x` in the...

The description of `angle_vectors_signed(u, v, normal, deg=False, tol=None)` is confusing and I've been using it wrong for the past year. I expected it to act like a projection plane with...

> I am checking this pull request too for different windows and mac versions. > I am wondering if there is any problems with Rhino8 Grasshopper componentizer. > For .NET...

Currently, core scene objects are replaced during the plugin phase by their implementation context counterparts. This leads to all sorts of problems. * the API of the context object implementation...

enhancement

I think not pinning dependencies (scipy==1.1 vs scipy>=1.1) is problematic. ``` networkx >= 3.0 numpy >= 1.15.4 scipy >= 1.1 ``` for example `numpy >= 1.15.4` might imply installing `numpy...

in `compas` the parsing of meshes is performed in compas python code, rather than via a dependency. `trimesh` would be a solid contender since its easy to install and yields...

**Describe the bug** Given: The mesh is received from Speckle as a list of vertices and faces, but some of the vertices are duplicated. The mesh was constructed and the...

Tracking progress in https://github.com/compas-dev/compas/issues/1447#issuecomment-2809566401 Added some missing properties and alternative constructors to `RhinoBrep`. ![image](https://github.com/user-attachments/assets/a8524fd6-78ba-484b-aab7-5886f09e1ac0) - [ ] Bug fix in a **backwards-compatible** manner. - [x] New feature in a **backwards-compatible**...

This fix catches the case where one or more of the vectors to be measured is parallel to the projection normal. This was returning an angle of 0, and it...