From 07589195b31b6ada8922ff25aca6c1d17feb6bdf Mon Sep 17 00:00:00 2001 From: Darby Johnston Date: Tue, 13 Aug 2024 10:49:48 -0700 Subject: [PATCH] Refactoring --- README.md | 2 ++ images/TransitionGraph.dot | 11 +++++++ images/TransitionGraph.svg | 67 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 80 insertions(+) create mode 100644 images/TransitionGraph.dot create mode 100644 images/TransitionGraph.svg diff --git a/README.md b/README.md index 65682ec..028707c 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,8 @@ Transition: ![Transition](images/Transition.png) +![Transition Graph](images/TransitionGraph.svg) + Transition with an invert effect on the clips: ![Transition 2](images/Transition2.png) diff --git a/images/TransitionGraph.dot b/images/TransitionGraph.dot new file mode 100644 index 0000000..e73af03 --- /dev/null +++ b/images/TransitionGraph.dot @@ -0,0 +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; +} diff --git a/images/TransitionGraph.svg b/images/TransitionGraph.svg new file mode 100644 index 0000000..cff1741 --- /dev/null +++ b/images/TransitionGraph.svg @@ -0,0 +1,67 @@ + + + + + + +CompositeTracks + + + +FillOp + +FillOp: Background color + + + +OverOp + +OverOp + + + +FillOp->OverOp + + + + + +ReadOp + +ReadOp: Counter.2.png + + + +TransitionOp + +TransitionOp + + + +ReadOp->TransitionOp + + + + + +ReadOp2 + +ReadOp: Color_Blue.png + + + +ReadOp2->TransitionOp + + + + + +TransitionOp->OverOp + + + + +