compas icon indicating copy to clipboard operation
compas copied to clipboard

Core packages of the COMPAS framework.

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

# Feature Request It would be very useful if the `joined_mesh` from `compas.datastructures.mesh.join.meshes_join` would inherit all attributes from the original meshes. ## Details **Is your feature request related to a...

I am wondering if we have a guideline for writing API documentation? If yes, could anyone points me to the guideline? ~~Based on my observation, I think we are using...

Save Brep trim information instead of creating it from the edges. ### What type of change is this? - [ ] Bug fix in a **backwards-compatible** manner. - [ ]...

### What type of change is this? - [ ] Bug fix in a **backwards-compatible** manner. - [ ] New feature in a **backwards-compatible** manner. - [ ] Breaking change:...

enhancement

``` (a, b) = [[0, 0, 0], [1, 0, 0]] (c, d) = [[1,-1, 0], [1, 1, 0]] from compas.geometry import is_intersection_segment_segment_xy is_intersection_segment_segment_xy((a, b), (c, d)) # prints True is_intersection_segment_segment_xy((a,...

Note: The method 'intersection_segment_segment' does not return a None, but rather a (None, None) when no intersections are present. Therefore, the if condition in 'intersection_segment_polyline' will cause a return of...

The relation between `SceneObjectNode` and `SceneObject` was too convoluted. This PR merge them into one by having `SceneObject` inherent from `TreeNode`. This simplifies a lot on operations to access parent/...

**Describe the bug** As titled. **To Reproduce** ```python from compas.colors import Color color = Color(0.0,0.0,0) print(Color.coerce(color)) ``` ```bash File "\compas\src\compas\colors\color.py", line 585, in coerce raise ColorError compas.colors.color.ColorError ```

compas_3

Attempt to simplify the installation process and return more meaningful error feedback to the user... ### What type of change is this? - [ ] Bug fix in a **backwards-compatible**...

request to complete implementation of polyline.offset() method. current error on running polyline.offset() ``` Traceback (most recent call last): File "file:///C:/Users/Uday/uday_dev/sbp_academy_24/scripts/A_00_inputs_canopy_comp.py", line 15, in File "C:\Users\Uday\.rhinocode\py39-rh8\site-envs\default-KA6C24DI\compas\geometry\curves\curve.py", line 605, in offset raise...