Newer
Older
Import / research / 3d-z-maps / mview-0.3.3 / mview / vrml1_mesh.h
@John John on 29 Dec 2020 414 bytes bulk import from macbookpro checkouts
//
//    File: vrml1_mesh.h
//
//    (C) 2000-2008 Helmut Cantzler
//
//    Licensed under the terms of the Lesser General Public License.
//

#ifndef _VRML1_MESH_H
#define _VRML1_MESH_H

#include "mesh.h"

using namespace std;

class Vrml1Mesh : public Mesh
{
public:
  int read(FILE *f, int (*updateProgress)(int pos),
	   void (*setTotal)(int size));
  void write(FILE *f, const char *comment = "");
};

#endif