cuu 569edf281e add gitignore 1 year ago
..
include b826552d3d add demo volume code 1 year ago
src b826552d3d add demo volume code 1 year ago
.gitignore 569edf281e add gitignore 1 year ago
CMakeLists.txt b826552d3d add demo volume code 1 year ago
README b826552d3d add demo volume code 1 year ago

README

/*
* 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.