Skip to content

Commit d24774d

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

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

C#/API/IRoboDk.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -559,6 +559,7 @@ IItem AddCurve(Mat curvePoints, IItem referenceObject = null, bool addToRef = fa
559559

560560
/// <summary>
561561
/// Returns the list of pairs of items that are in the collision map.
562+
/// Items that are not visible will still be included, regardless of the "Include hidden objects" option.
562563
/// </summary>
563564
/// <returns>List of items that are in the collision map</returns>
564565
List<CollisionPair> CollisionActivePairList();

C#/Example/RoboDKSampleProject/RoboDK.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3939,6 +3939,7 @@ public List<Item> CollisionItems(List<int> link_id_list = null)
39393939

39403940
/// <summary>
39413941
/// Returns the list of pairs of items that are in the collision map.
3942+
/// Items that are not visible will still be included, regardless of the "Include hidden objects" option.
39423943
/// </summary>
39433944
/// <returns>List of items that are in the collision map</returns>
39443945
public List<Tuple<Item, Item, int, int>> CollisionActivePairList()

C++/robodk_api.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1070,6 +1070,7 @@ class ROBODK RoboDK {
10701070

10711071
/// <summary>
10721072
/// Returns the pairs of objects that are currently in the collision map.
1073+
/// Items that are not visible will still be included, regardless of the "Include hidden objects" option.
10731074
/// </summary>
10741075
/// <param name="item1">List of the first colliding objects</param>
10751076
/// <param name="item2">List of the second colliding objects</param>

0 commit comments

Comments
 (0)