TM2IN  0.5.1
max3ds.h
Go to the documentation of this file.
1 //
2 // Created by dongmin on 18. 7. 16.
3 //
4 
5 #ifndef TM2IN_MAX3DS_H
6 #define TM2IN_MAX3DS_H
7 
8 #include "features/Room.h"
9 
10 namespace TM2IN{
11  namespace io{
16  std::vector<Room*> import3DS(const char *filePath);
21  int export3DS(const char *filePath, std::vector<Room*> rooms);
22  }
23 }
24 
25 
26 
27 #endif //TM2IN_MAX3DS_H
int export3DS(const char *filePath, vector< Room * > rooms)
Definition: max3ds.cpp:27
Definition: collinear.cpp:10
std::vector< Room * > import3DS(const char *filePath)
Imports 3DS file and returns a vector of Room.
Definition: max3ds.cpp:16