kick
/Users/morten/Programmering/cpp/kick/src/kick/ply/ply_load.h
00001 //
00002 //  ObjLoader.h
00003 //  KickObjLoader
00004 //
00005 //  Created by morten on 8/31/13.
00006 //  Copyright (c) 2013 morten. All rights reserved.
00007 //
00008 
00009 #pragma once
00010 
00011 #include <memory>
00012 #include <iostream>
00013 #include <functional>
00014 #include "kick/mesh/mesh_data.h"
00015 
00016 #include <string>
00017 
00018 namespace kick {
00019     std::shared_ptr<MeshData> loadPlyData(std::string objSource);
00020     std::shared_ptr<MeshData> loadPlyData(std::string path, std::string filename);
00021 }
 All Classes Functions Variables