What is the C++ CAA API corresponding to "Measure Between" toolbar action
What is the C++ CAA API corresponding to "Measure Between" toolbar action
(OP)
I am new to CATIA environment and need help on this issue:
I want to measure the distance between two points of a segment. One point is the bundle extremity and the other is a point defined in the geometrical set and lying on the segment.
I see that interactively we could do this through "Measure Between" toolbar action, but would like to know how we can compute this length through the CAA APIs.
Thanks,
Kiran
I want to measure the distance between two points of a segment. One point is the bundle extremity and the other is a point defined in the geometrical set and lying on the segment.
I see that interactively we could do this through "Measure Between" toolbar action, but would like to know how we can compute this length through the CAA APIs.
Thanks,
Kiran





RE: What is the C++ CAA API corresponding to "Measure Between" toolbar action
and GetMinumumDistance method
indocti discant et ament meminisse periti
RE: What is the C++ CAA API corresponding to "Measure Between" toolbar action
RE: What is the C++ CAA API corresponding to "Measure Between" toolbar action
you might have to play with the side of the split
you can check the distance from the split to the other point to know if you have the proper curve (distance should be 0)
split A = split curve with Pt1 if distance (split A, PtB) = 0 then good if not get other side of splitA
split B = split curve with Pt2 if distance (split B, PtA) = 0 then good if not get other side of splitB
measure splitB
indocti discant et ament meminisse periti