aboutsummaryrefslogtreecommitdiff
path: root/src/client/northstar/operations
diff options
context:
space:
mode:
authorEleanor Eng <eleanor_eng@brown.edu>2019-04-08 17:54:30 -0400
committerEleanor Eng <eleanor_eng@brown.edu>2019-04-08 17:54:30 -0400
commit1327dc11149fc0ee774f6ee94609a4c48f901ef7 (patch)
tree4d1d5d04571fdb1d2408a606740909953c2789c1 /src/client/northstar/operations
parent52b30ce1ba6748c1d0a0f8697df3e66c53b2c315 (diff)
parent3a9f6df918ad45e55b0c6a540cb566aff4940288 (diff)
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web into animationtimeline
Diffstat (limited to 'src/client/northstar/operations')
-rw-r--r--src/client/northstar/operations/HistogramOperation.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/northstar/operations/HistogramOperation.ts b/src/client/northstar/operations/HistogramOperation.ts
index e63de1632..840520235 100644
--- a/src/client/northstar/operations/HistogramOperation.ts
+++ b/src/client/northstar/operations/HistogramOperation.ts
@@ -42,6 +42,10 @@ export class HistogramOperation extends BaseOperation implements IBaseFilterCons
this.SchemaName = schemaName;
}
+ Copy(): HistogramOperation {
+ return new HistogramOperation(this.SchemaName, this.X, this.Y, this.V, this.Normalization);
+ }
+
Equals(other: Object): boolean {
throw new Error("Method not implemented.");
}