diff --git a/doxygen_cxx/classdrake_1_1planning_1_1_edge_measure.html b/doxygen_cxx/classdrake_1_1planning_1_1_edge_measure.html
index 347fc1e5f5..a0e6d9b763 100644
--- a/doxygen_cxx/classdrake_1_1planning_1_1_edge_measure.html
+++ b/doxygen_cxx/classdrake_1_1planning_1_1_edge_measure.html
@@ -171,7 +171,7 @@
The portion of the edge between q1 and q2 that is collision free is encoded as the value α with the following semantics:
- α = 1: No collisions were detected. The full edge can be considered collision free. This is the only time completely_free() reports
true
.
-- 0 ≤ α < 1: A collision was detected between q1 and q2. α is the largest interpolation value such that an edge from q to qα can be considered collision free (where qα = interpolate(q1, q2, α)). partially_free() reports
true
.
+- 0 ≤ α < 1: A collision was detected between q1 and q2. α is the largest interpolation value such that an edge from q1 to qα can be considered collision free (where qα = interpolate(q1, q2, α)). partially_free() reports
true
.
- α is undefined: q1 was found to be in collision. That means there exists no α for which the edge (q1, qα) can be collision free.
- Note
- The length of the collision-free edge can be computed via distance * α. To simplify comparisons between a number of edges, some of which may not have a defined α, the function alpha_or(default_value) is provided. This is equivalent to
edge.partially_free() ? edge.alpha() : default_value
.
diff --git a/from_source.html b/from_source.html
index 772647cc1f..4b34857093 100644
--- a/from_source.html
+++ b/from_source.html
@@ -164,7 +164,7 @@ Supported Configurations
Ubuntu 22.04 LTS (Jammy Jellyfish) |
x86_64 |
3.10 |
- 7.1 |
+ 7.2 |
3.22 |
GCC 11 (default) or Clang 15 |
OpenJDK 11 |
@@ -173,7 +173,7 @@ Supported Configurations
Ubuntu 24.04 LTS (Noble Numbat) |
x86_64 |
3.12 |
- 7.1 |
+ 7.2 |
3.28 |
GCC 13 (default) or Clang 15 |
OpenJDK 21 |
@@ -182,7 +182,7 @@ Supported Configurations
macOS Ventura (13) |
arm64 |
3.12 |
- 7.1 |
+ 7.2 |
3.26 |
Apple LLVM 14 (Xcode 14) |
AdoptOpenJDK 16 (HotSpot JVM) |
@@ -191,7 +191,7 @@ Supported Configurations
macOS Sonoma (14) |
arm64 |
3.12 |
- 7.1 |
+ 7.2 |
3.28 |
Apple LLVM 15 (Xcode 15) |
AdoptOpenJDK 16 (HotSpot JVM) |
diff --git a/pydrake/pydrake.planning.html b/pydrake/pydrake.planning.html
index da2788af26..34e226cfa0 100644
--- a/pydrake/pydrake.planning.html
+++ b/pydrake/pydrake.planning.html
@@ -1845,7 +1845,7 @@
free. This is the only time completely_free() reports True
.
- 0 ≤ α < 1:
A collision was detected between q1 and q2. α is the largest
-interpolation value such that an edge from q to qα can be considered
+interpolation value such that an edge from q1 to qα can be considered
collision free (where qα = interpolate(q1, q2, α)). partially_free()
reports True
.
- α is undefined: