Coverage for /home/martinb/.local/share/virtualenvs/camcops/lib/python3.6/site-packages/openpyxl/drawing/xdr.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# Copyright (c) 2010-2020 openpyxl
3"""
4Spreadsheet Drawing has some copies of Drawing ML elements
5"""
7from .geometry import Point2D, PositiveSize2D, Transform2D
10class XDRPoint2D(Point2D):
12 namespace = None
13 x = Point2D.x
14 y = Point2D.y
17class XDRPositiveSize2D(PositiveSize2D):
19 namespace = None
20 cx = PositiveSize2D.cx
21 cy = PositiveSize2D.cy
24class XDRTransform2D(Transform2D):
26 namespace = None
27 rot = Transform2D.rot
28 flipH = Transform2D.flipH
29 flipV = Transform2D.flipV
30 off = Transform2D.off
31 ext = Transform2D.ext
32 chOff = Transform2D.chOff
33 chExt = Transform2D.chExt