@wandelbots/nova-api 25.8.0-dev.21 → 25.8.0-dev.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/v2/api.ts CHANGED
@@ -3014,13 +3014,13 @@ export type Manufacturer = typeof Manufacturer[keyof typeof Manufacturer];
3014
3014
 
3015
3015
 
3016
3016
  /**
3017
- * Midpoint insertion algorithm configuration for collision-free path planning. This algorithm iteratively inserts midpoints between the start and target joint position to find collision-free paths.
3017
+ *
3018
3018
  * @export
3019
3019
  * @interface MidpointInsertionAlgorithm
3020
3020
  */
3021
3021
  export interface MidpointInsertionAlgorithm {
3022
3022
  /**
3023
- * Algorithm discriminator.
3023
+ * Algorithm discriminator. Midpoint insertion algorithm configuration for collision-free path planning. This algorithm adds a single midpoint between the start and target joint position to find collision-free paths.
3024
3024
  * @type {string}
3025
3025
  * @memberof MidpointInsertionAlgorithm
3026
3026
  */
@@ -4498,13 +4498,13 @@ export interface ProgramStartRequest {
4498
4498
  'arguments': object;
4499
4499
  }
4500
4500
  /**
4501
- * <!-- theme: danger --> > **Experimental** RRT Connect algorithm configuration for collision-free path planning. Rapidly-exploring Random Trees (RRT) builds trees of valid configurations by randomly sampling the joint space and connecting feasible points. RRT Connect grows two trees simultaneously from start and target positions until they meet. This is a custom implementation optimized for manipulator kinematics and collision checking in industrial contexts.
4501
+ *
4502
4502
  * @export
4503
4503
  * @interface RRTConnectAlgorithm
4504
4504
  */
4505
4505
  export interface RRTConnectAlgorithm {
4506
4506
  /**
4507
- * Algorithm discriminator.
4507
+ * Algorithm discriminator. <!-- theme: danger --> > **Experimental** RRT Connect algorithm configuration for collision-free path planning. Rapidly-exploring Random Trees (RRT) builds trees of valid configurations by randomly sampling the joint space and connecting feasible points with JointPTP motions. RRT Connect grows two trees simultaneously from start and target positions until they meet. This is a custom implementation optimized for manipulator kinematics and collision checking in industrial contexts.
4508
4508
  * @type {string}
4509
4509
  * @memberof RRTConnectAlgorithm
4510
4510
  */
@@ -4515,6 +4515,30 @@ export interface RRTConnectAlgorithm {
4515
4515
  * @memberof RRTConnectAlgorithm
4516
4516
  */
4517
4517
  'max_iterations'?: number;
4518
+ /**
4519
+ * Maximum step size for tree extension in joint space.
4520
+ * @type {number}
4521
+ * @memberof RRTConnectAlgorithm
4522
+ */
4523
+ 'max_step_size'?: number;
4524
+ /**
4525
+ * Adjust the maximum step size during the search based on the recent success rate of tree expansion.
4526
+ * @type {boolean}
4527
+ * @memberof RRTConnectAlgorithm
4528
+ */
4529
+ 'adaptive_step_size'?: boolean;
4530
+ /**
4531
+ * Apply smoothing after the search has succeeded. This will remove as many intermediate points as possible while keeping the path valid.
4532
+ * @type {boolean}
4533
+ * @memberof RRTConnectAlgorithm
4534
+ */
4535
+ 'apply_smoothing'?: boolean;
4536
+ /**
4537
+ * Apply blending after the search has succeeded and smoothing has been applied. This will apply the largest viable blending at each intermediate point.
4538
+ * @type {boolean}
4539
+ * @memberof RRTConnectAlgorithm
4540
+ */
4541
+ 'apply_blending'?: boolean;
4518
4542
  }
4519
4543
 
4520
4544
  export const RRTConnectAlgorithmAlgorithmNameEnum = {