Skip to content

Commit 6c81021

Browse files
committed
updated changelog, ran linting (forgot to earlier)
1 parent 6ca0778 commit 6c81021

File tree

8 files changed

+12
-18
lines changed

8 files changed

+12
-18
lines changed

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Added
1111

1212
### Changed
13+
* Replaced the deprecated `draw_frame` function with `frame_to_rhino_plane` in the *Visualize Trajectory* GhPython component to restore correct frame visualization.
1314

1415
### Removed
1516

16-
### Fixed
17-
* Replaced the deprecated `draw_frame` function with `frame_to_rhino_plane` in the *Visualize Trajectory* GhPython component to restore correct frame visualization.
18-
1917

2018
## [1.1.2] 2025-10-31
2119

src/compas_fab/ghpython/components/Cf_RosRobot/code.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@
44
COMPAS FAB v1.1.2
55
"""
66

7+
from compas.scene import SceneObject
78
from compas_ghpython import create_id
89
from ghpythonlib.componentbase import executingcomponent as component
910
from scriptcontext import sticky as st
1011

11-
from compas.scene import SceneObject
12-
1312

1413
class ROSRobot(component):
1514
def RunScript(self, ros_client, load):

src/compas_fab/ghpython/components/Cf_VisualizeRobot/code.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66

77
import time
88

9+
from compas.geometry import Frame
10+
from compas.geometry import Transformation
11+
from compas.scene import SceneObject
912
from compas_ghpython import create_id
1013
from compas_rhino.conversions import frame_to_rhino_plane
1114
from ghpythonlib.componentbase import executingcomponent as component
1215
from scriptcontext import sticky as st
1316

14-
from compas.geometry import Frame
15-
from compas.geometry import Transformation
16-
from compas.scene import SceneObject
1717
from compas_fab.backends import BackendFeatureNotSupportedError
1818
from compas_fab.robots import PlanningScene
1919

src/compas_fab/ghpython/components/Cf_VisualizeTrajectory/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
COMPAS FAB v1.1.2
55
"""
66

7-
from compas_rhino.conversions import frame_to_rhino_plane
87
from compas_ghpython.sets import list_to_ghtree
8+
from compas_rhino.conversions import frame_to_rhino_plane
99
from ghpythonlib.componentbase import executingcomponent as component
1010

1111

src/compas_fab/ghpython/components_cpython/Cf_RosRobot/code.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@
66
"""
77

88
import Grasshopper
9+
from compas.scene import SceneObject
910
from compas_ghpython import create_id
1011
from scriptcontext import sticky as st
1112

12-
from compas.scene import SceneObject
13-
1413

1514
class ROSRobot(Grasshopper.Kernel.GH_ScriptInstance):
1615
def RunScript(self, ros_client, load):

src/compas_fab/ghpython/components_cpython/Cf_VisualizeRobot/code.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
import time
99

1010
import Grasshopper
11+
from compas.geometry import Frame
12+
from compas.geometry import Transformation
13+
from compas.scene import SceneObject
1114
from compas_ghpython import create_id
1215
from compas_rhino.conversions import frame_to_rhino_plane
1316
from scriptcontext import sticky as st
1417

15-
from compas.geometry import Frame
16-
from compas.geometry import Transformation
17-
from compas.scene import SceneObject
1818
from compas_fab.backends import BackendFeatureNotSupportedError
1919
from compas_fab.robots import PlanningScene
2020

src/compas_fab/ghpython/reachabilitymapobject.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
from compas_ghpython.scene import GHSceneObject
2-
31
from compas.colors import ColorMap
42
from compas.scene import SceneObject
3+
from compas_ghpython.scene import GHSceneObject
54

65

76
class ReachabilityMapObject(GHSceneObject):

src/compas_fab/rhino/reachabilitymapobject.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
from compas_rhino.scene import RhinoSceneObject
2-
31
from compas.colors import ColorMap
42
from compas.scene import SceneObject
3+
from compas_rhino.scene import RhinoSceneObject
54

65

76
class ReachabilityMapObject(RhinoSceneObject):

0 commit comments

Comments
 (0)