Li

Results 15 issues of Li

```python from compas.geometry import Box from compas.geometry import Scale box = Box.from_width_height_depth(1, 1, 1) print(box) box.transform(Scale.from_factors([2, 2, 2])) print(box) box.scale(2) print(box) from compas.geometry import Sphere sphere = Sphere(1) print(sphere) sphere.transform(Scale.from_factors([2,...

LGTM. just a few notes/reminders * `show_wires` (Blender) is actually the same as `show_lines`. `show_wires` is a better name in my opinion * `disjoint` (Rhino) and `not shade_smooth` (Blender) are...

Hey guys a rather large PR, there are several components to this, let me explain: ## 1. Scene data store Previously we inherent `Scene` from `Tree` and `SceneObject` from `TreeNode`....

breaking change

Not done @tomvanmele just for you to compare, if you run this ```python from compas.scene import Scene from compas.geometry import Box from compas import json_dumps scene = Scene() box =...