我正在尝试将matter.js移植到另一种语言。 Javascript不是我最强的语言。
该函数假设解析包含由空格(以及可选的逗号)分隔的有序x y对的字符串到特定对象中:
* @method fromPath
* @param {string} path
* @param {body} body
* @return {vertices} vertices
*/
Vertices.fromPath = function(path, body) {
var pathPattern = /L?\s*([\-\d\.e]+)[\s,]*([\-\d\.e]+)*/ig,
points = [];
path.replace(pathPattern, function(match, x, y) {
points.push({ x: parseFloat(x), y: parseFloat(y) });
});
return Vertices.create(points, body);
};
稍后,调用此函数,将以下字符串传递给Vertices.fromPath:
vertices: Vertices.fromPath('L 0 0 L ' + width + ' 0 L ' + width + ' ' + height + ' L 0 ' + height)
width
和height
是数字。 L
字符的目的是什么?我认为该方法应该将逗号或空格分隔为x,y对分为数字,因此我无法弄清楚L
字符的相关性。
任何人都可以启发我吗?