Source code for fastpyxl.drawing.xdr

# Copyright (c) 2010-2024 fastpyxl

"""
Spreadsheet Drawing has some copies of Drawing ML elements
"""

from .geometry import Point2D, PositiveSize2D, Transform2D


[docs] class XDRPoint2D(Point2D): namespace = None
[docs] class XDRPositiveSize2D(PositiveSize2D): namespace = None
[docs] class XDRTransform2D(Transform2D): namespace = None