diff options
author | bobzel <zzzman@gmail.com> | 2021-09-28 13:59:37 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-09-28 13:59:37 -0400 |
commit | 2a6385ad330ac4d7caf6b23e64cb13b7546ea44a (patch) | |
tree | 5cce346ea75fb88400a5643db28722de6120e174 | |
parent | 85c3a9ec3590ebfbe85209a64c7e41cae9663923 (diff) |
from last
-rw-r--r-- | src/client/util/InteractionUtils.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/util/InteractionUtils.tsx b/src/client/util/InteractionUtils.tsx index f748188d7..9f3159d83 100644 --- a/src/client/util/InteractionUtils.tsx +++ b/src/client/util/InteractionUtils.tsx @@ -94,8 +94,6 @@ export namespace InteractionUtils { export function CreatePolyline(points: { X: number, Y: number }[], left: number, top: number, color: string, width: number, strokeWidth: number, bezier: string, fill: string, arrowStart: string, arrowEnd: string, dash: string | undefined, scalex: number, scaley: number, shape: string, pevents: string, opacity: number, nodefs: boolean) { - let pts: { X: number; Y: number; }[] = []; - if (shape) { //if any of the shape are true const pts = shape ? makePolygon(shape, points) : points; if (isNaN(scalex)) scalex = 1; |