blob: cd6729acf966906ef966180f0c5f833940a07e85 (
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
|
// 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 _BRepOffset_Status_HeaderFile
#define _BRepOffset_Status_HeaderFile
//! Lists the offset modes. These are the following: <br>
//! - BRepOffset_Skin which describes the offset along <br>
//! the surface of a solid, used to obtain a manifold topological space, <br>
//! - BRepOffset_Pipe which describes the offset of a <br>
//! curve, used to obtain a pre-surface, <br>
//! - BRepOffset_RectoVerso which describes the offset <br>
//! of a given surface shell along both sides of the surface. <br>//! status of an offset face <br>
//! Good : <br>
//! Reversed : e.g. Offset > Radius of a cylinder <br>
//! Degenerated : e.g. Offset = Radius of a cylinder <br>
//! Unknown : e.g. for a Beziersurf <br>
enum BRepOffset_Status {
BRepOffset_Good,
BRepOffset_Reversed,
BRepOffset_Degenerated,
BRepOffset_Unknown
};
#ifndef _Standard_PrimitiveTypes_HeaderFile
#include <Standard_PrimitiveTypes.hxx>
#endif
#endif
|