Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
darbyjohnston committed Aug 18, 2024
1 parent 8bfe7a5 commit e820bd5
Show file tree
Hide file tree
Showing 6 changed files with 164 additions and 164 deletions.
18 changes: 9 additions & 9 deletions images/CompositeTracksGraph.dot
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
digraph CompositeTracks {
FillOp [shape=box, label="FillOp: Background color", fontsize=12, margin=0.05, width=0, height=0]
ReadOp [shape=box, label="ReadOp: Color_Blue.png", fontsize=12, margin=0.05, width=0, height=0]
ReadOp2 [shape=box, label="ReadOp: Counter.2.png", fontsize=12, margin=0.05, width=0, height=0]
OverOp [shape=box, label="OverOp", fontsize=12, margin=0.05, width=0, height=0]
OverOp2 [shape=box, label="OverOp", fontsize=12, margin=0.05, width=0, height=0]
FillOp -> OverOp;
ReadOp -> OverOp;
OverOp -> OverOp2;
ReadOp2 -> OverOp2;
Fill [shape=box, label="Fill: Background color", fontsize=12, margin=0.05, width=0, height=0]
Read [shape=box, label="Read: Color_Blue.png", fontsize=12, margin=0.05, width=0, height=0]
Read2 [shape=box, label="Read: Counter.2.png", fontsize=12, margin=0.05, width=0, height=0]
Over [shape=box, label="Over", fontsize=12, margin=0.05, width=0, height=0]
Over2 [shape=box, label="Over", fontsize=12, margin=0.05, width=0, height=0]
Fill -> Over;
Read -> Over;
Over -> Over2;
Read2 -> Over2;
}
78 changes: 39 additions & 39 deletions images/CompositeTracksGraph.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 13 additions & 13 deletions images/Transition2Graph.dot
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
digraph CompositeTracks {
FillOp [shape=box, label="FillOp: Background color", fontsize=12, margin=0.05, width=0, height=0]
ReadOp [shape=box, label="ReadOp: Counter.2.png", fontsize=12, margin=0.05, width=0, height=0]
ReadOp2 [shape=box, label="ReadOp: Color_Blue.png", fontsize=12, margin=0.05, width=0, height=0]
InvertOp [shape=box, label="InvertOp", fontsize=12, margin=0.05, width=0, height=0]
InvertOp2 [shape=box, label="InvertOp", fontsize=12, margin=0.05, width=0, height=0]
TransitionOp [shape=box, label="TransitionOp", fontsize=12, margin=0.05, width=0, height=0]
OverOp [shape=box, label="OverOp", fontsize=12, margin=0.05, width=0, height=0]
FillOp -> OverOp;
ReadOp -> InvertOp;
InvertOp -> TransitionOp;
ReadOp2 -> InvertOp2;
InvertOp2 -> TransitionOp;
TransitionOp -> OverOp;
Fill [shape=box, label="Fill: Background color", fontsize=12, margin=0.05, width=0, height=0]
Read [shape=box, label="Read: Counter.2.png", fontsize=12, margin=0.05, width=0, height=0]
Read2 [shape=box, label="Read: Color_Blue.png", fontsize=12, margin=0.05, width=0, height=0]
Invert [shape=box, label="Invert", fontsize=12, margin=0.05, width=0, height=0]
Invert2 [shape=box, label="Invert", fontsize=12, margin=0.05, width=0, height=0]
Transition [shape=box, label="Transition", fontsize=12, margin=0.05, width=0, height=0]
Over [shape=box, label="Over", fontsize=12, margin=0.05, width=0, height=0]
Fill -> Over;
Read -> Invert;
Invert -> Transition;
Read2 -> Invert2;
Invert2 -> Transition;
Transition -> Over;
}
110 changes: 55 additions & 55 deletions images/Transition2Graph.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 9 additions & 9 deletions images/TransitionGraph.dot
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
digraph CompositeTracks {
FillOp [shape=box, label="FillOp: Background color", fontsize=12, margin=0.05, width=0, height=0]
ReadOp [shape=box, label="ReadOp: Counter.2.png", fontsize=12, margin=0.05, width=0, height=0]
ReadOp2 [shape=box, label="ReadOp: Color_Blue.png", fontsize=12, margin=0.05, width=0, height=0]
TransitionOp [shape=box, label="TransitionOp", fontsize=12, margin=0.05, width=0, height=0]
OverOp [shape=box, label="OverOp", fontsize=12, margin=0.05, width=0, height=0]
FillOp -> OverOp;
ReadOp -> TransitionOp;
ReadOp2 -> TransitionOp;
TransitionOp -> OverOp;
Fill [shape=box, label="Fill: Background color", fontsize=12, margin=0.05, width=0, height=0]
Read [shape=box, label="Read: Counter.2.png", fontsize=12, margin=0.05, width=0, height=0]
Read2 [shape=box, label="Read: Color_Blue.png", fontsize=12, margin=0.05, width=0, height=0]
Transition [shape=box, label="Transition", fontsize=12, margin=0.05, width=0, height=0]
Over [shape=box, label="Over", fontsize=12, margin=0.05, width=0, height=0]
Fill -> Over;
Read -> Transition;
Read2 -> Transition;
Transition -> Over;
}
Loading

0 comments on commit e820bd5

Please sign in to comment.