add demo volume code

This commit is contained in:
cuu
2022-09-04 21:02:32 +08:00
parent 548957a344
commit b826552d3d
12 changed files with 926 additions and 0 deletions

37
demo/volume/README Normal file
View File

@@ -0,0 +1,37 @@
/*
* ALGO : PROJ. : Volume(Demo)
* RESEARCH : File : README
* : Date : 20100531.0725UTC
* : Email : mail@algoresearch.net
*/
# Project structure:
.
├── README
├── CMakeLists.txt
├── bin/
├── build/
├── include/
│   ├── main.h
│   ├── observer.h
│   ├── space.h
│   ├── transform.h
│   └── x.h
└── src/
├── main.c
├── observer.c
├── space.c
├── transform.c
└── x.c
# How to compile:
At the project root directory, execute following commands:
cd bulid
cmake ..
make
# How to run:
If compiled correctly, the executable file(s) will be generated in
the "./bin/" of the project root directory.
EOF.