通过MDN和W3schools,SVG路径中唯一可用的字母(命令)是:M / m(moveto),L / z(lineto),H / h(水平lineto),V / v(垂直线),C / c(曲线到),S / s(平滑曲线),Q / q(二次贝塞尔曲线),T / t(平滑二次贝塞尔曲线),A / a(椭圆弧)和Z / Z(closepath)。
但我刚刚在Inkscape上发现了我的SVG文件中的'e'(2.52e-4,1.13167
),我需要知道这意味着什么。完整的路径:
<path style="fill:#000000;stroke-width:0.25446901"
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"
id="path47"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
ps:代码是在Inkscape上制作的“跟踪位图”的结果
答案 0 :(得分:3)
e用于指数表示法:https://www.w3schools.com/js/js_numbers.asp
2.52e-4例如表示0.000252 = 2.52 * 10 ^ -4 = 2.52 * 0.0001