3-Newcomer
October 16, 2025
Question
[Creo10 ProToolkit development] How to route multiple cables through a network?
- October 16, 2025
- 2 replies
- 541 views
Creo 10 Pro/Toolkit developement. How to route multiple cables through a network?
I tried following code to route all cables through the network point. But all cables are concentrating in one point as the attached picture shown. It is not what I want.
for (int j = 0; j < cablenum; j++)
{
err2 = ProCablelocationrefAlloc(PRO_LOC_POINT, sel_array_route, PRO_B_TRUE, NULL, &cablelocationref);
err3 = ProCableThruLocationRoute(cable_route_data_arr[j], cablelocationref, &p_location, &second_location);
err = ProCablelocationrefFree(cablelocationref);
}
How to route the cable through the point like the right pic shown? I will be appreciated.

