2
0

removed gradient from graphs

This commit is contained in:
2018-08-04 21:58:18 +02:00
parent e6f3b9184b
commit 4288b56944
5 changed files with 14 additions and 33 deletions

View File

@@ -76,27 +76,25 @@ export class GraphsComponent implements AfterViewInit, OnChanges {
private updateGraphs(): void {
const curves = [
{
color: env.guilloche.colors.primary,
start: {
point: this.matrix['start'],
vector: this.config.vectors.start,
color: env.guilloche.colors.start
vector: this.config.vectors.start
},
end: {
point: this.matrix['end'],
vector: this.config.vectors.end,
color: env.guilloche.colors.end
vector: this.config.vectors.end
}
},
{
color: env.guilloche.colors.secondary,
start: {
point: this.matrix['end'],
vector: this.config.vectors.end,
color: env.guilloche.colors.end
vector: this.config.vectors.end
},
end: {
point: this.matrix['start'],
vector: this.config.vectors.start,
color: env.guilloche.colors.start
vector: this.config.vectors.start
}
}
];