https://github.com/NSchertler/GeneralizedMotorcycleGraph
Tip revision: a34738fe34a051760b4042dc9d740231e511fec1 authored by Nico Schertler on 31 October 2020, 07:04:57 UTC
Updated access token
Updated access token
Tip revision: a34738f
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);