@canvas-harness/core 0.1.18 → 0.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -17
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -17
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1919,14 +1919,7 @@ var drawEdge = (ctx, edge, geom, sourceNode, targetNode, scale, theme, opts) =>
|
|
|
1919
1919
|
ctx.restore();
|
|
1920
1920
|
if (drawSourceArrow) {
|
|
1921
1921
|
const tipDir = directionTowardTip(samples, clip.startIndex, clip.startPoint, 1);
|
|
1922
|
-
drawArrowhead(
|
|
1923
|
-
ctx,
|
|
1924
|
-
sourceArrowhead,
|
|
1925
|
-
clip.startPoint,
|
|
1926
|
-
negateVec(tipDir),
|
|
1927
|
-
strokeColor,
|
|
1928
|
-
strokeWidth
|
|
1929
|
-
);
|
|
1922
|
+
drawArrowhead(ctx, sourceArrowhead, clip.startPoint, tipDir, strokeColor, strokeWidth);
|
|
1930
1923
|
}
|
|
1931
1924
|
if (drawTargetArrow) {
|
|
1932
1925
|
const tipDir = directionTowardTip(samples, clip.endIndex, clip.endPoint, -1);
|
|
@@ -1955,14 +1948,7 @@ var drawEdge = (ctx, edge, geom, sourceNode, targetNode, scale, theme, opts) =>
|
|
|
1955
1948
|
ctx.restore();
|
|
1956
1949
|
if (drawSourceArrow) {
|
|
1957
1950
|
const tipDir = directionTowardTip(samples, clip.startIndex, clip.startPoint, 1);
|
|
1958
|
-
drawArrowhead(
|
|
1959
|
-
ctx,
|
|
1960
|
-
sourceArrowhead,
|
|
1961
|
-
clip.startPoint,
|
|
1962
|
-
negateVec(tipDir),
|
|
1963
|
-
strokeColor,
|
|
1964
|
-
strokeWidth
|
|
1965
|
-
);
|
|
1951
|
+
drawArrowhead(ctx, sourceArrowhead, clip.startPoint, tipDir, strokeColor, strokeWidth);
|
|
1966
1952
|
}
|
|
1967
1953
|
if (drawTargetArrow) {
|
|
1968
1954
|
const tipDir = directionTowardTip(samples, clip.endIndex, clip.endPoint, -1);
|
|
@@ -2116,7 +2102,6 @@ var retreatFromPoint = (samples, clippedIndex, clipPoint, dist, direction) => {
|
|
|
2116
2102
|
y: clipPoint.y - dy / len * dist * Math.min(1, t)
|
|
2117
2103
|
};
|
|
2118
2104
|
};
|
|
2119
|
-
var negateVec = (v) => ({ x: -v.x, y: -v.y });
|
|
2120
2105
|
|
|
2121
2106
|
// src/node-types/define-node.ts
|
|
2122
2107
|
var DEFAULT_LOD = {
|