Error Performing BooleanOperation (Intersect) on Regions

Error Performing BooleanOperation (Intersect) on Regions

artillis_prado
Enthusiast Enthusiast
249 Views
2 Replies
Message 1 of 3

Error Performing BooleanOperation (Intersect) on Regions

artillis_prado
Enthusiast
Enthusiast

I'm developing a .NET application for AutoCAD where I create two Regions from Polylines and add them to ModelSpace. When attempting to perform BooleanOperation(BooleanOperationType.BoolIntersect), I receive the following error:

The Boolean operation on solid and/or surface bodies failed. Error Code Number is 60030.

I have verified that both Polylines are closed and that the Regions are created correctly. The issue might be related to coplanarity or another API limitation.
Has anyone encountered this error before and knows how to resolve it?"

 

regionPoly.AddToDocument(modelSpace, acT);
regionBoundary.AddToDocument(modelSpace, acT);

regionPoly.BooleanOperation(
    BooleanOperationType.BoolIntersect, 
    regionBoundary);

 

artillis_prado_0-1738958203802.png

artillis_prado_1-1738958246037.png

 

0 Likes
250 Views
2 Replies
Replies (2)
Message 2 of 3

ActivistInvestor
Mentor
Mentor

Not sure what exactly your image shows.  How about posting a reproducible case in a DWG file?

0 Likes