423baff73b
- Docker bridge 网络隔离(8000 端口封死) - Gunicorn 4 Worker 多进程 - Alembic 数据库迁移基线 - 日志轮转 20m×3 - JWT 密钥 + DB 密码 + CORS 收紧 - 3-2-1 备份链路(NAS + R740-B 冷备) - 连接池 pool_pre_ping + pool_recycle=3600
34 lines
626 B
Python
34 lines
626 B
Python
# 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
|