There isn’t a “revcloud” entity type in Autocad, but you can make one with a polyline and enlisting the help of send command. Here’s the sample code
And the result:
I see this asked frequently in the AutoCAD forums “How do I get the bounding box of an entity”, and the standard answer is usually, “Use vla-GetBoundingBox”, or get the entity extents. This is the correct answer, caveat, the bounding box is aligned with WCS, so if your object is rotated the result may not be what you need.
One option is to transform the object to align with WCS. Or we can use a 3rd party tool like Python’s shapely to help.
here's an example:
import traceback from pyrx import Ap , Db , Ed , Ge , Gi @ Ap . Command () def TB () -> None : try : db = Db . curD...