Skip to content

Commit ad6def9

Browse files
committed
ADD: mermaid roadmap
1 parent ea2cec5 commit ad6def9

File tree

3 files changed

+52
-0
lines changed

3 files changed

+52
-0
lines changed

CMakeLists.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
cmake_minimum_required(VERSION 3.16.)
2+
3+
project(DiffCheck VERSION 1.0.0 LANGUAGES CXX C)
4+
5+
set(CMAKE_CXX_STANDARD 17)
6+
7+

README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,41 @@
11
# diffCheck
22
Temporary repository for diffCheck
3+
4+
## Roadmap
5+
6+
```mermaid
7+
gantt
8+
dateFormat YYYY-MM-DD
9+
title diffCheck - general overview
10+
excludes weekends
11+
12+
section Publication
13+
Abstract edition :active, absed, 2024-03-01, 2024-03-15
14+
Submission abstract ICSA :milestone, icsaabs, 2024-03-15, 0d
15+
Paper edition :paperd, 2024-10-01, 2024-10-30
16+
Submission paper ICSA :milestone, icsapap, 2024-10-30, 0d
17+
18+
section Code development
19+
Backend development :backenddev, after icsaabs, 6w
20+
Rhino/Grasshopper integration :rhghinteg, after backenddev, 6w
21+
Documentation & Interface :docuint, after fabar, 3w
22+
23+
section Prototype testing
24+
Fabrication of AR Prototype :crit, fabar, 2024-07-01, 2024-08-30
25+
Fabrication of CNC Prototype :crit, fabcnc, 2024-07-01, 2024-08-30
26+
Fabrication of Robot Prototype :crit, fabrob, 2024-07-01, 2024-08-30
27+
Data collection and evaluation :dataeval, after fabrob, 4w
28+
```
29+
30+
```mermaid
31+
gantt
32+
dateFormat YYYY-MM-DD
33+
title diffCheck - backend dev
34+
excludes weekends
35+
36+
data i/o :active, dataio, 2024-03-15, 1w
37+
global registration :glbreg, after dataio, 2w
38+
semantic seg. from 3D model :semseg, after glbreg, 1w
39+
local registration :locreg, after semseg, 2w
40+
error computation + results :errcomp, after locreg, 1w
41+
```

src/diffCheckApp.cc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#include <iostream>
2+
3+
int main() {
4+
std::cout << "Hello, World!" << std::endl;
5+
return 0;
6+
}

0 commit comments

Comments
 (0)