Share

isPtInsideBoundingBox Function

C++

inline bool isPtInsideBoundingBox(
    const AcGePoint3dArray& bBox, 
    const AcGePoint3d m
);

File

dbents.h

Description

Determines whether a point is within an entity's bounding box.

Parameters

Parameters Description
bBox Input AcGePoint3dArray that defines the bounding box
m Input AcGePoint3d as the point to test

Returns

true is returned if the point is within the entity's bounding box, otherwise false.

Was this information helpful?