-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Copy javascript for editing pipelines back to pipeline app.
Part of #751. I moved it and copied it back, so the annotations would get carried into the container app. The pipeline app will get deleted soon.
- Loading branch information
Showing
46 changed files
with
11,410 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
import './tests/canvas.tests'; | ||
import './tests/dialog.tests'; | ||
import './tests/pipeline_families.tests'; | ||
import './tests/pipeline_functions.tests'; | ||
import './tests/pipeline_submit.tests'; | ||
import './tests/contextmenu.tests'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import './tests/canvas.tests'; | ||
import './tests/dialog.tests'; | ||
import './tests/pipeline_families.tests'; | ||
import './tests/pipeline_functions.tests'; | ||
import './tests/pipeline_submit.tests'; | ||
import './tests/contextmenu.tests'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
export interface Point { | ||
x: number; | ||
y: number; | ||
} | ||
export interface Circle extends Point { | ||
r: number; | ||
} | ||
export interface Ellipse extends Point { | ||
rx: number; | ||
ry: number; | ||
} | ||
export interface Rectangle extends Point { | ||
height: number; | ||
width: number; | ||
r?: number; | ||
stroke?: boolean; | ||
} | ||
export interface TextParams extends Point { | ||
dir: number; | ||
style: string; | ||
text: string; | ||
} |
Oops, something went wrong.