Hi
In CAA V5, I am able to find the specification container and Mechanical Feature using
CATIPrtPart_var spPrtPart = spSpecOnPart;
Now I need to find out all points inside the part. Example is shown below
Could you please direct me for right APIs to use?
I tried the following, but while comparing, 3D part contains 10 points. but output of below code is 24. Is this pulling topology as well?
CATIDescendants_var hDescendant(spSpecOnPart);
CATListValCATISpecObject_var hPointlist;
hDescendant->GetAllChildren(CATIGSMPoint::ClassName(), hPointlist);
int NbPrtPoints = hPointlist.Size();
Thanks in Advance
22555
In CAA V5, I am able to find the specification container and Mechanical Feature using
CATIPrtPart_var spPrtPart = spSpecOnPart;
Now I need to find out all points inside the part. Example is shown below
Could you please direct me for right APIs to use?
I tried the following, but while comparing, 3D part contains 10 points. but output of below code is 24. Is this pulling topology as well?
CATIDescendants_var hDescendant(spSpecOnPart);
CATListValCATISpecObject_var hPointlist;
hDescendant->GetAllChildren(CATIGSMPoint::ClassName(), hPointlist);
int NbPrtPoints = hPointlist.Size();
Thanks in Advance
22555