diff options
author | Kevin CHEN <33132228+KevinZonda@users.noreply.github.com> | 2021-09-04 16:22:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-04 23:22:27 +0800 |
commit | 40fcb5319c8bc7b2710f9f5ab13816ffaa39631c (patch) | |
tree | 3cfdf1ee5b8310de004ec7cc75b28bcc1b0e2690 /files/zh-cn/web/css/transform-function | |
parent | 0c98a8a92bcdfddae7fcf277659f59085351d644 (diff) | |
download | translated-content-40fcb5319c8bc7b2710f9f5ab13816ffaa39631c.tar.gz translated-content-40fcb5319c8bc7b2710f9f5ab13816ffaa39631c.tar.bz2 translated-content-40fcb5319c8bc7b2710f9f5ab13816ffaa39631c.zip |
Fix html table in Web/CSS/transform-function/rotate3d(), zh-CN (#2322)
Diffstat (limited to 'files/zh-cn/web/css/transform-function')
-rw-r--r-- | files/zh-cn/web/css/transform-function/rotate3d()/index.html | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/files/zh-cn/web/css/transform-function/rotate3d()/index.html b/files/zh-cn/web/css/transform-function/rotate3d()/index.html index 9eea1570ba..f9e046f02b 100644 --- a/files/zh-cn/web/css/transform-function/rotate3d()/index.html +++ b/files/zh-cn/web/css/transform-function/rotate3d()/index.html @@ -38,18 +38,20 @@ translation_of: Web/CSS/transform-function/rotate3d() </dl> <table class="standard-table"> - <thead> + <tbody> <tr> - <th scope="col">笛卡尔坐标 on ℝ<sup>2</sup></th> - <th scope="col">齐次坐标 on ℝℙ<sup>2</sup></th> - <th scope="col">笛卡尔坐标 on ℝ<sup>3</sup></th> - <th scope="col">齐次坐标 on ℝℙ<sup>3</sup></th> + <th scope="col">在ℝ<sup>2</sup>上的笛卡尔坐标</th> + <td rowspan="2">这种变换应用于3D空间,不可用于平面空间</td> + </tr> + <tr> + <th scope="col">在ℝℙ<sup>2</sup>上的齐次坐标</th> </tr> - </thead> - <tbody> <tr> - <td colspan="2">这种变换应用于3D空间,不可用于平面空间</td> + <th scope="col">在ℝ<sup>3</sup>上的笛卡尔坐标</th> <td colspan="1"><a href="/@api/deki/files/5987/=transform-functions-rotate3d_cart.png"><img src="/@api/deki/files/5987/=transform-functions-rotate3d_cart.png?size=webview" style="height: 47px; width: 510px;"></a><math> <mfenced><mtable><mtr><mtd>1<mo>+</mo>(1<mo>-</mo>cos(<mi>a</mi>))(<msup><mi>x</mi><mn>2</mn></msup><mo>-</mo>1)</mtd><mtd><mi>z</mi><mo>·</mo>sin(<mi>a</mi>)+<mi>x</mi><mi>y</mi>(1<mo>-</mo>cos(<mi>a</mi>))</mtd><mtd><mo>-</mo><mi>y</mi><mo>·</mo>sin(<mi>a</mi>)<mo>+</mo><mi>x</mi><mi>z</mi><mo>·</mo>(1<mo>-</mo>cos(<mi>a</mi>))</mtd></mtr><mtr><mtd><mo>-</mo><mi>z</mi><mo>·</mo>sin(<mi>a</mi>)<mo>+</mo><mi>x</mi><mi>y</mi><mo>·</mo>(1<mo>-</mo>cos(<mi>a</mi>))</mtd><mtd>1+(1-cos(a))(y2-1)</mtd><mtd><mi>x</mi><mo>·</mo>sin(<mi>a</mi>)<mo>+</mo><mi>y</mi><mi>z</mi><mo>·</mo>(1<mo>-</mo>cos(<mi>a</mi>))</mtd><mtr><mtd>ysin(a) + xz(1-cos(a))</mtd><mtd>-xsin(a)+yz(1-cos(a))</mtd><mtd>1+(1-cos(a))(z2-1)</mtd><mtd>t</mtd></mtr><mtr><mtd>0</mtd><mtd>0</mtd><mtd>0</mtd><mtd>1</mtd></mtr> </mtr></mtable></mfenced></math></td> + </tr> + <tr> + <th scope="col">在ℝℙ<sup>3</sup>上的齐次坐标</th> <td colspan="1"><a href="/@api/deki/files/5986/=transform-functions-rotate3d_hom4.png"><img src="/@api/deki/files/5986/=transform-functions-rotate3d_hom4.png?size=webview" style="height: 61px; width: 522px;"></a></td> </tr> </tbody> |