Source code for abaqus.Canvas.DrawingArea



[docs]class DrawingArea: """The DrawingArea object specifies the location and size of the drawing area used for placement of viewports. Attributes ---------- width: float A Float specifying the width in millimeters. height: float A Float specifying the height in millimeters. origin: tuple[float] A pair of Floats specifying the coordinates of the bottom left hand corner in millimeters. Notes ----- This object can be accessed by: .. code-block:: session.drawingArea """ # A Float specifying the width in millimeters. width: float = None # A Float specifying the height in millimeters. height: float = None # A pair of Floats specifying the coordinates of the bottom left hand corner in # millimeters. origin: tuple[float] = ()