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

Function sub

libs/echarts/echarts.simple.js:990–994  ·  view source on GitHub ↗

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

(out, v1, v2)

Source from the content-addressed store, hash-verified

988 * @param {Vector2} v2
989 */
990function sub(out, v1, v2) {
991 out[0] = v1[0] - v2[0];
992 out[1] = v1[1] - v2[1];
993 return out;
994}
995
996/**
997 * 向量长度

Callers 2

smoothBezierFunction · 0.70
drawNonMonoFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected