Skip to content

Commit 9964b85

Browse files
feat-wip: add sequence schema of the df2 workflow as it is now developed
1 parent e80b266 commit 9964b85

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,35 @@ gantt
8888
Fabrication of iterative prototype :fab, 2025-08-01, 2w
8989
```
9090

91+
92+
9193
## How to contribute
9294

9395
If you want to contribute to the project, please refer to the [contribution guidelines]([./CONTRIBUTING.md](https://diffcheckorg.github.io/diffCheck/contribute.html)).
96+
97+
## Logic
98+
The logic of the workflow is currently as follows:
99+
100+
```mermaid
101+
stateDiagram-v2
102+
state "[breps to assemble]" as s1
103+
state "scan of latest element placed" as s2
104+
state "get pose of i-th brep" as s3
105+
state "get pose of i-1-th brep" as s4
106+
state "compute pose of i-1-th element from scan" as s5
107+
state "compute pose difference" as s6
108+
state "compute pose correction" as s7
109+
state "assemble i-th-element" as s8
110+
state "i += 1" as s9
111+
[*]-->s2
112+
s1-->s3
113+
s1-->s4
114+
s2-->s5
115+
s5-->s6
116+
s4-->s6
117+
s6-->s7
118+
s3-->s7
119+
s7-->s8
120+
s8-->s9
121+
s9-->[*]
122+
```

0 commit comments

Comments
 (0)