main.c 362 B

123456789101112131415161718192021222324
  1. /*
  2. * ALGO : PROJ. : Volume
  3. * RESEARCH : File : main.c
  4. * : Date : 20100531.0725UTC
  5. * : Email : mail@algoresearch.net
  6. */
  7. #include <stdlib.h>
  8. #include "main.h"
  9. #include "space.h"
  10. #include "observer.h"
  11. int main()
  12. {
  13. SYS_TABLE sys;
  14. create_space (&sys, 320, 320, 320);
  15. create_observer (&sys);
  16. iterative_space (&sys);
  17. return 0;
  18. }