Hi,
I try to use the IsDuplicate() function for a ON_Brep object but I’m doing somthing wrong because the following code gives me “false” for variable “check”
const ON_Brep* brep = objref.Brep();
if(brep==0)
break;
ON_Brep* test = new ON_Brep(*brep);
bool check= brep->IsDuplicate(*test,0.01);
Any help is appreciated. Thanks
Michael