2015-03-03 00:38:33 +08:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
|
|
|
** GeomIO Library
|
|
|
|
** Copyright FougSys (2 Mar. 2015)
|
|
|
|
** contact@fougsys.fr
|
|
|
|
**
|
|
|
|
** This software is a reusable library whose purpose is to provide complete
|
|
|
|
** I/O support for various CAD file formats (eg. STL)
|
|
|
|
**
|
|
|
|
** This software is governed by the CeCILL-B license under French law and
|
|
|
|
** abiding by the rules of distribution of free software. You can use,
|
|
|
|
** modify and/ or redistribute the software under the terms of the CeCILL-B
|
|
|
|
** license as circulated by CEA, CNRS and INRIA at the following URL
|
|
|
|
** "http://www.cecill.info".
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-03-28 23:33:35 +08:00
|
|
|
#ifndef GMIO_LIBSTL_STL_ERROR_H
|
|
|
|
#define GMIO_LIBSTL_STL_ERROR_H
|
|
|
|
|
|
|
|
/*! A byte-mask to tag(identify) STL-specific error codes */
|
2015-03-02 23:43:42 +08:00
|
|
|
enum { GMIO_STL_ERROR_TAG = 0x11000000 };
|
2014-03-28 23:33:35 +08:00
|
|
|
|
|
|
|
/*! This enum defines the various error codes reported by STL read/write functions */
|
|
|
|
enum gmio_stl_error
|
|
|
|
{
|
2014-03-31 21:52:04 +08:00
|
|
|
/*! Common STL write error indicating gmio_stl_mesh::get_triangle_func() pointer is NULL */
|
2014-03-28 23:33:35 +08:00
|
|
|
GMIO_STL_WRITE_NULL_GET_TRIANGLE_FUNC_ERROR = GMIO_STL_ERROR_TAG + 1,
|
|
|
|
|
|
|
|
/* Specific error codes returned by STL_ascii read function */
|
|
|
|
|
|
|
|
/*! Parsing error occured in gmio_stla_read() due to malformed STL ascii input */
|
|
|
|
GMIO_STLA_READ_PARSE_ERROR = GMIO_STL_ERROR_TAG + 100,
|
|
|
|
|
|
|
|
/*! Invalid max number of decimal significants digits for gmio_stla_write(), must be in [1..9] */
|
|
|
|
GMIO_STLA_WRITE_INVALID_REAL32_PREC_ERROR = GMIO_STL_ERROR_TAG + 101,
|
|
|
|
|
|
|
|
/* Specific error codes returned by STL_binary read/write functions */
|
|
|
|
|
|
|
|
/*! The byte order argument supplied is not supported, must be little or big endian */
|
|
|
|
GMIO_STLB_UNSUPPORTED_BYTE_ORDER_ERROR = GMIO_STL_ERROR_TAG + 300,
|
|
|
|
|
|
|
|
/*! Error occured when reading header data in gmio_stlb_read() */
|
|
|
|
GMIO_STLB_READ_HEADER_WRONG_SIZE_ERROR = GMIO_STL_ERROR_TAG + 301,
|
|
|
|
|
|
|
|
/*! Error occured when reading facet count in gmio_stlb_read() */
|
|
|
|
GMIO_STLB_READ_FACET_COUNT_ERROR = GMIO_STL_ERROR_TAG + 302
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef enum gmio_stl_error gmio_stl_error_t;
|
|
|
|
|
|
|
|
#endif /* GMIO_LIBSTL_STL_ERROR_H */
|