// 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 STL_IO_H
#define STL_IO_H
#include "geom_op.h"
#include "mesh_op.h"
//function that loads an STL file in memory (declaration)
void load_stl_mesh(std::string filename,tri_mesh &mesh);
int mo_stricmp ( const char *s1, const char*s2 ); // string compare without case
#endif