Skip to content

Commit d7d694e

Browse files
committed
chore: update doxygen comments for CollisionActivePairList
1 parent 32cde6b commit d7d694e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

C#/API/IRoboDk.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -558,9 +558,9 @@ IItem AddCurve(Mat curvePoints, IItem referenceObject = null, bool addToRef = fa
558558
List<CollisionPair> GetCollisionPairs();
559559

560560
/// <summary>
561-
/// Returns the list of pairs of items that are in a collision state.
561+
/// Returns the list of pairs of items that are in the collision map.
562562
/// </summary>
563-
/// <returns>List of items that are in a collision state</returns>
563+
/// <returns>List of items that are in the collision map</returns>
564564
List<CollisionPair> CollisionActivePairList();
565565

566566
/// <summary>

C#/Example/RoboDKSampleProject/RoboDK.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3938,9 +3938,9 @@ public List<Item> CollisionItems(List<int> link_id_list = null)
39383938
}
39393939

39403940
/// <summary>
3941-
/// Returns the list of pairs of items that are in a collision state.
3941+
/// Returns the list of pairs of items that are in the collision map.
39423942
/// </summary>
3943-
/// <returns>List of items that are in a collision state</returns>
3943+
/// <returns>List of items that are in the collision map</returns>
39443944
public List<Tuple<Item, Item, int, int>> CollisionActivePairList()
39453945
{
39463946
_check_connection();

C++/robodk_api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1069,7 +1069,7 @@ class ROBODK RoboDK {
10691069
int Collision(Item item1, Item item2);
10701070

10711071
/// <summary>
1072-
/// Returns the pairs of objects that are currently in a collision state.
1072+
/// Returns the pairs of objects that are currently in the collision map.
10731073
/// </summary>
10741074
/// <param name="item1">List of the first colliding objects</param>
10751075
/// <param name="item2">List of the second colliding objects</param>

0 commit comments

Comments
 (0)