From 8622382798c60b65b1c7a41a22dc320ef7cc1c33 Mon Sep 17 00:00:00 2001 From: Michael Czechowski Date: Sat, 4 Aug 2018 21:44:36 +0200 Subject: [PATCH] hotfix wrong vector directions of starting points --- src/app/components/graphs.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/components/graphs.component.ts b/src/app/components/graphs.component.ts index 576c686..1b1b617 100644 --- a/src/app/components/graphs.component.ts +++ b/src/app/components/graphs.component.ts @@ -90,12 +90,12 @@ export class GraphsComponent implements AfterViewInit, OnChanges { { start: { point: this.matrix['end'], - vector: this.config.vectors.start, + vector: this.config.vectors.end, color: env.guilloche.colors.end }, end: { point: this.matrix['start'], - vector: this.config.vectors.end, + vector: this.config.vectors.start, color: env.guilloche.colors.start } }