Skip to content

Commit 69e81b3

Browse files
committed
Fixed typo of circle_radius_range in generate_random_world_env_2d.py.
1 parent 845d21c commit 69e81b3

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

LOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# LOG
22

3+
## 240421
4+
1. Fixed typo of `circle_radius_range` in `generate_random_world_env_2d.py`. Adjusted `env_configs/random_2d.yml` to make the 2D configurations still the same as the previous setup, but with no typos.
5+
36
## 240415
47
1. Fixed `img_folder` bug in `visualize_data_samples_2d.py`.
58
2. nirrt_star v1.0.0 is released.

env_configs/random_2d.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
env_height: 224
22
env_width: 224
33
rectangle_width_range: [16, 24]
4-
circle_radius_range: [8, 12]
4+
circle_radius_range: [16, 24]
55
num_rectangles_range: [8, 12]
66
num_circles_range: [8, 12]
77
path_clearance: 3

generate_random_world_env_2d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def generate_astar_path(
7171

7272
img_height, img_width = config['env_height'], config['env_width']
7373
rectangle_width_range = config['rectangle_width_range']
74-
circle_radius_range = config['rectangle_width_range']
74+
circle_radius_range = config['circle_radius_range']
7575
num_rectangles_range = config['num_rectangles_range']
7676
num_circles_range = config['num_circles_range']
7777
path_clearance = config['path_clearance']

0 commit comments

Comments
 (0)