MCPcopy Index your code
hub / github.com/SuperMap/iClient-JavaScript / add

Function add

libs/echarts/echarts-en.simple.js:965–969  ·  view source on GitHub ↗

* 向量相加 * @param {Vector2} out * @param {Vector2} v1 * @param {Vector2} v2

(out, v1, v2)

Source from the content-addressed store, hash-verified

963 * @param {Vector2} v2
964 */
965function add(out, v1, v2) {
966 out[0] = v1[0] + v2[0];
967 out[1] = v1[1] + v2[1];
968 return out;
969}
970
971/**
972 * 向量缩放后相加

Callers 1

smoothBezierFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected