@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.js
CHANGED
|
@@ -1917,14 +1917,7 @@ var drawEdge = (ctx, edge, geom, sourceNode, targetNode, scale, theme, opts) =>
|
|
|
1917
1917
|
ctx.restore();
|
|
1918
1918
|
if (drawSourceArrow) {
|
|
1919
1919
|
const tipDir = directionTowardTip(samples, clip.startIndex, clip.startPoint, 1);
|
|
1920
|
-
drawArrowhead(
|
|
1921
|
-
ctx,
|
|
1922
|
-
sourceArrowhead,
|
|
1923
|
-
clip.startPoint,
|
|
1924
|
-
negateVec(tipDir),
|
|
1925
|
-
strokeColor,
|
|
1926
|
-
strokeWidth
|
|
1927
|
-
);
|
|
1920
|
+
drawArrowhead(ctx, sourceArrowhead, clip.startPoint, tipDir, strokeColor, strokeWidth);
|
|
1928
1921
|
}
|
|
1929
1922
|
if (drawTargetArrow) {
|
|
1930
1923
|
const tipDir = directionTowardTip(samples, clip.endIndex, clip.endPoint, -1);
|
|
@@ -1953,14 +1946,7 @@ var drawEdge = (ctx, edge, geom, sourceNode, targetNode, scale, theme, opts) =>
|
|
|
1953
1946
|
ctx.restore();
|
|
1954
1947
|
if (drawSourceArrow) {
|
|
1955
1948
|
const tipDir = directionTowardTip(samples, clip.startIndex, clip.startPoint, 1);
|
|
1956
|
-
drawArrowhead(
|
|
1957
|
-
ctx,
|
|
1958
|
-
sourceArrowhead,
|
|
1959
|
-
clip.startPoint,
|
|
1960
|
-
negateVec(tipDir),
|
|
1961
|
-
strokeColor,
|
|
1962
|
-
strokeWidth
|
|
1963
|
-
);
|
|
1949
|
+
drawArrowhead(ctx, sourceArrowhead, clip.startPoint, tipDir, strokeColor, strokeWidth);
|
|
1964
1950
|
}
|
|
1965
1951
|
if (drawTargetArrow) {
|
|
1966
1952
|
const tipDir = directionTowardTip(samples, clip.endIndex, clip.endPoint, -1);
|
|
@@ -2114,7 +2100,6 @@ var retreatFromPoint = (samples, clippedIndex, clipPoint, dist, direction) => {
|
|
|
2114
2100
|
y: clipPoint.y - dy / len * dist * Math.min(1, t)
|
|
2115
2101
|
};
|
|
2116
2102
|
};
|
|
2117
|
-
var negateVec = (v) => ({ x: -v.x, y: -v.y });
|
|
2118
2103
|
|
|
2119
2104
|
// src/node-types/define-node.ts
|
|
2120
2105
|
var DEFAULT_LOD = {
|