ryosga
Results
3
issues of
ryosga
修改翻译错误
勘误: 正交化 -> 归一化
## 1. Alignment * 原文 Alignment可以通过其坐标转换公式将其坐标转为子元素的具体偏移坐标: `(Alignment.x*childWidth/2+childWidth/2, Alignment.y*childHeight/2+childHeight/2)` * 改为: `(Alignment.x*(parentWidth - childWidth)/2, Alignment.y*(parentHeight - childHeight)/2)` ## 2. FractionalOffset * 原文 FractionalOffset的坐标转换公式为: `实际偏移 = (FractionalOffse.x * childWidth, FractionalOffse.y * childHeight)`...