blob: 335480ce188d381029553552988dc355daab967a (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright (c) 2010-2024 openpyxl
"""
Spreadsheet Drawing has some copies of Drawing ML elements
"""
from .geometry import Point2D, PositiveSize2D, Transform2D
class XDRPoint2D(Point2D):
namespace = None
x = Point2D.x
y = Point2D.y
class XDRPositiveSize2D(PositiveSize2D):
namespace = None
cx = PositiveSize2D.cx
cy = PositiveSize2D.cy
class XDRTransform2D(Transform2D):
namespace = None
rot = Transform2D.rot
flipH = Transform2D.flipH
flipV = Transform2D.flipV
off = Transform2D.off
ext = Transform2D.ext
chOff = Transform2D.chOff
chExt = Transform2D.chExt
|