SVG 路径中的字母“e”意味着什么?

Le_*_*___ 3 svg inkscape

根据MDNW3schools,SVG 路径中可用的唯一字母(命令)为:M/m(moveto)、L/z(lineto)、H/h(horizo​​ntal lineto)、V/v(vertical lineto)、C/c( curveto)、S/s(平滑曲线)、Q/q(二次 B\xc3\xa9zier 曲线)、T/t(平滑二次 B\xc3\xa9zier 曲线)、A/a(椭圆弧) 和 Z/z(近距离路径)。

\n\n

但我刚刚2.52e-4,1.13167在 Inkscape 上制作的 SVG 文件中发现了 \'e\' ( ),我需要知道它是什么意思。完整路径:

\n\n
<path style="fill:#000000;stroke-width:0.25446901"\n       d="m 83.846207,283.12668 c 15.992614,-15.1728 -2.513154,-76.38272 -19.662265,-19.85549 -2.686628,2.07836 -3.844405,3.79032 -3.843936,5.68391 2.52e-4,1.13167 1.271934,3.67458 2.424778,4.8488 29.290043,-6.79271 2.902502,8.1524 11.570816,9.81493 1.988533,0.34976 6.85716,0.0978 9.510607,-0.49215 z"\n       id="path47"\n       inkscape:connector-curvature="0"\n       sodipodi:nodetypes="cccccc" />\n
Run Code Online (Sandbox Code Playgroud)\n\n

ps:该代码是在 Inkscape 上制作的“跟踪位图”的结果

\n

Cod*_*rPi 5

e 代表指数表示法:https://www.w3schools.com/js/js_numbers.asp

例如,2.52e-4 表示 0.000252 = 2.52 * 10 ^ -4 = 2.52 * 0.0001