Revision f8c1c6834e3c7da57d0cae114735f1cf643b0498 authored by Nico Schertler on 09 July 2018, 14:15:39 UTC, committed by Nico Schertler on 09 July 2018, 14:15:39 UTC
1 parent 722a9f4
meshio.h
/*
@author Wenzel Jakob
@author Nico Schertler
*/
#pragma once
#include "common.h"
#include <nsessentials/util/IndentationLog.h>
#include <nsessentials/data/FileHelper.h>
#include <fstream>
#ifndef _WIN32
#include <libgen.h>
#endif
extern void LoadMesh(const std::string &filename, Matrix3Xf& V, FaceList& F);
extern void load_obj(const std::string &filename, Matrix3Xf &V, FaceList& F, Matrix2Xf &T, FaceList& FT);
Computing file changes ...