Zac Zhuo Zhang
Zac Zhuo Zhang
Hi, thanks for this fantastic plugin. Could you add some function to allow us to customize the `${imageSyntaxPrefix}` so we can use `![image]` or something. Thanks
**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 ```
**Describe the bug** for Vector peration `*`, like: ```python >>> u = Vector(1.000, 1.000, 0.000) >>> u * 2 Vector(2.000, 2.000, 0.000) ``` if we do: `Vector * float`: It...
https://github.com/compas-dev/compas/blob/05ef043486f19f22568dc798ed5881e80e10fd9c/src/compas/geometry/_core/predicates_3.py#L100 For example, if the number of points are four, it doesn't work. To duplicate: ```python from compas.geometry import is_coplanar points = [ [0.2829517225424449, -4.839003403981526, 1.0982209046681721], [0.28995636105537415, -4.846865971883138, 1.1013225714365642], [0.2851504385471344,...
# Feature Request Currently, the `DXF` reader is not development. I had a bit of time looking at it and felt we could develop it. @tomvanmele ## Details `.dxf` is...
# Feature Request As a user, I want to have a projection function which could project a `compas.geometry.Line` into a `compas.datastructures.Messh` so that we can make use of it for...
# Add `plane_brep intersection` method ## Details Just found in `compas.geometry`, there is no `intersection_plane_brep` like `Rhino.Geometry.Intersect.Intersection.BrepPlane` method in Rhino API. This function would be useful for slicing objects in...
# Hi, Thanks for this amazing tool!!! # Prerequisites I carefully followed the installation instruction, and successfully ran pybullet with the following example: ```python import pybullet as p import time...
Since `mesh_flatness` is not available in compas.geometry: `ImportError: cannot import name 'mesh_flatness' from 'compas.datastructures'`
Hi, thanks for such a good plugin. By default, Script Parasite will auto-generate a .editorconfig for VSCode with the following indent settings, which is good in most cases: ``` indent_style...