blob: 833bc8f768ef2359b739bd6bcf968f90ce970d76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
// This file is generated by WOK (CPPExt).
// Please do not edit this file; modify original file instead.
// The copyright and license terms as defined for the original file apply to
// this header file considered to be the "object code" form of the original source.
#ifndef _BRepBuilderAPI_FaceError_HeaderFile
#define _BRepBuilderAPI_FaceError_HeaderFile
//! Indicates the outcome of the <br>
//! construction of a face, i.e. whether it has been successful or <br>
//! not, as explained below: <br>
//! - BRepBuilderAPI_FaceDone No error occurred. The face is <br>
//! correctly built. <br>
//! - BRepBuilderAPI_NoFace No initialization of the <br>
//! algorithm; only an empty constructor was used. <br>
//! - BRepBuilderAPI_NotPlanar <br>
//! No surface was given and the wire was not planar. <br>
//! - BRepBuilderAPI_CurveProjectionFailed <br>
//! Not used so far. <br>
//! - BRepBuilderAPI_ParametersOutOfRange <br>
//! The parameters given to limit the surface are out of its bounds. <br>
enum BRepBuilderAPI_FaceError {
BRepBuilderAPI_FaceDone,
BRepBuilderAPI_NoFace,
BRepBuilderAPI_NotPlanar,
BRepBuilderAPI_CurveProjectionFailed,
BRepBuilderAPI_ParametersOutOfRange
};
#ifndef _Standard_PrimitiveTypes_HeaderFile
#include <Standard_PrimitiveTypes.hxx>
#endif
#endif
|