// Moshade - Compute average cross section for 3D shapes
// Copyright (C) 2018-2026 Eric Bechet - bechet@cadxfem.org
//
// See the LICENSE file for license information and contributions.
// Please report all bugs and problems to <bechet@cadxfem.org>.

#ifndef GM_IO_H
#define GM_IO_H
#include "geom_op.h"
#include "mesh_op.h"
//function that loads a GM file in memory (declaration)
void load_gm_mesh(std::string filename,tri_mesh &mesh,bool override=false,double szsph=1.0,double szcyl=1.0, int ns=10);
#endif