diff --git a/main/_images/index_1_0.png b/main/_images/index_1_0.png index 39df791e0..d46988478 100644 Binary files a/main/_images/index_1_0.png and b/main/_images/index_1_0.png differ diff --git a/main/_images/index_2_0.png b/main/_images/index_2_0.png index c6d82684a..1c8d72433 100644 Binary files a/main/_images/index_2_0.png and b/main/_images/index_2_0.png differ diff --git a/main/_images/index_2_1.png b/main/_images/index_2_1.png index c01857bcb..a6950a51f 100644 Binary files a/main/_images/index_2_1.png and b/main/_images/index_2_1.png differ diff --git a/main/_images/index_2_2.png b/main/_images/index_2_2.png index 2d087d7d7..a4c727f87 100644 Binary files a/main/_images/index_2_2.png and b/main/_images/index_2_2.png differ diff --git a/main/_images/index_3_1.png b/main/_images/index_3_1.png index e9474e2f1..f8f08282d 100644 Binary files a/main/_images/index_3_1.png and b/main/_images/index_3_1.png differ diff --git a/main/_images/quickstart_0_0.png b/main/_images/quickstart_0_0.png index 444a7bd20..a60fd3c58 100644 Binary files a/main/_images/quickstart_0_0.png and b/main/_images/quickstart_0_0.png differ diff --git a/main/_images/quickstart_2_0.png b/main/_images/quickstart_2_0.png index fdb151330..10de74775 100644 Binary files a/main/_images/quickstart_2_0.png and b/main/_images/quickstart_2_0.png differ diff --git a/main/_modules/highway_env/envs/racetrack_env/index.html b/main/_modules/highway_env/envs/racetrack_env/index.html index dece2ff41..234ff19e2 100644 --- a/main/_modules/highway_env/envs/racetrack_env/index.html +++ b/main/_modules/highway_env/envs/racetrack_env/index.html @@ -349,6 +349,7 @@
"screen_width": 600, "screen_height": 600, "centering_position": [0.5, 0.5], + "speed_limit": 10.0, } ) return config
net = RoadNetwork() w = 5 w2 = 2 * w - default_speedlimit = self.config['speed_limit'] + default_speedlimit = self.config["speed_limit"] # Initialise First Lane lane = StraightLane( @@ -804,7 +805,7 @@
) # 3 - Vertical Straight - delta_extension = -1. # Better join + delta_extension = -1.0 # Better join net.add_lane( "c", "d", @@ -963,7 +964,7 @@
start6_3 = np.array( [ start6[0] + 2 * (start6_2[0] - start6[0]), - start6[1] + 2 * (start6_2[1] - start6[1]) + start6[1] + 2 * (start6_2[1] - start6[1]), ] ) end6_3 = np.array( @@ -1039,42 +1040,31 @@
start8 = np.array( [ center7[0] + radii7 * np.cos(np.deg2rad(theta7_end)), - center7[1] + radii7 * np.sin(np.deg2rad(theta7_end)) + center7[1] + radii7 * np.sin(np.deg2rad(theta7_end)), ] ) start8_2 = np.array( [ center7[0] + (radii7 + w) * np.cos(np.deg2rad(theta7_end)), - center7[1] + (radii7 + w) * np.sin(np.deg2rad(theta7_end)) + center7[1] + (radii7 + w) * np.sin(np.deg2rad(theta7_end)), ] ) start8_3 = np.array( [ center7[0] + (radii7 + w2) * np.cos(np.deg2rad(theta7_end)), - center7[1] + (radii7 + w2) * np.sin(np.deg2rad(theta7_end)) + center7[1] + (radii7 + w2) * np.sin(np.deg2rad(theta7_end)), ] ) # We preemptively take section 9's radius to make a nice join. radii9 = 15 rad = np.deg2rad(30) - end8 = np.array( - [ - 42 - radii9 * np.cos(rad), - -radii9 - radii9 * np.sin(rad) - ] - ) + end8 = np.array([42 - radii9 * np.cos(rad), -radii9 - radii9 * np.sin(rad)]) end8_2 = np.array( - [ - 42 - (radii9 + w) * np.cos(rad), - -radii9 - (radii9 + w) * np.sin(rad) - ] + [42 - (radii9 + w) * np.cos(rad), -radii9 - (radii9 + w) * np.sin(rad)] ) end8_3 = np.array( - [ - 42 - (radii9 + w2) * np.cos(rad), - -radii9 - (radii9 + w2) * np.sin(rad) - ] + [42 - (radii9 + w2) * np.cos(rad), -radii9 - (radii9 + w2) * np.sin(rad)] ) net.add_lane( "h", diff --git a/main/multi_agent/index.html b/main/multi_agent/index.html index 3318f4e48..9393ba8ae 100644 --- a/main/multi_agent/index.html +++ b/main/multi_agent/index.html @@ -389,11 +389,11 @@