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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
// 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 _BndLib_Add3dCurve_HeaderFile
#define _BndLib_Add3dCurve_HeaderFile
#ifndef _Standard_HeaderFile
#include <Standard.hxx>
#endif
#ifndef _Standard_Macro_HeaderFile
#include <Standard_Macro.hxx>
#endif
#ifndef _Standard_Real_HeaderFile
#include <Standard_Real.hxx>
#endif
class Adaptor3d_Curve;
class Bnd_Box;
//! Computes the bounding box for a curve in 3d. <br>
//! Functions to add a 3D curve to a bounding box. <br>
//! The 3D curve is defined from a Geom curve. <br>
class BndLib_Add3dCurve {
public:
void* operator new(size_t,void* anAddress)
{
return anAddress;
}
void* operator new(size_t size)
{
return Standard::Allocate(size);
}
void operator delete(void *anAddress)
{
if (anAddress) Standard::Free((Standard_Address&)anAddress);
}
//! Adds to the bounding box B the curve C <br>
//! B is then enlarged by the tolerance value Tol. <br>
//! Note: depending on the type of curve, one of the following <br>
//! representations of the curve C is used to include it in the bounding box B: <br>
//! - an exact representation if C is built from a line, a circle or a conic curve, <br>
//! - the poles of the curve if C is built from a Bezier curve or a BSpline curve, <br>
//! if not, the points of an approximation of the curve C. <br>
//! Warning <br>
//! C is an adapted curve, that is, an object which is an interface between: <br>
//! - the services provided by a 3D curve from the package Geom <br>
//! - and those required of the curve by the computation algorithm. <br>
//! The adapted curve is created in the following way: <br>
//! Handle(Geom_Curve) mycurve = ... ; <br>
//! GeomAdaptor_Curve C(mycurve); <br>
//! The bounding box B is then enlarged by adding it: <br>
//! Bnd_Box B; <br>
//! // ... <br>
//! Standard_Real Tol = ... ; <br>
//! Add3dCurve::Add ( C, Tol, B ); <br>
//! Exceptions <br>
//! Standard_Failure if the curve is built from: <br>
//! - a Geom_Line, or <br>
//! - a Geom_Parabola, or <br>
//! - a Geom_Hyperbola, <br>
//! and P1 and P2 are either two negative infinite real <br>
//! numbers, or two positive infinite real numbers. <br>
Standard_EXPORT static void Add(const Adaptor3d_Curve& C,const Standard_Real Tol,Bnd_Box& B) ;
//! Adds to the bounding box B the curve C <br>
//! the arc of the curve C limited by the two parameter values P1 and P2. <br>
//! Note: depending on the type of curve, one of the following <br>
//! representations of the curve C is used to include it in the bounding box B: <br>
//! - an exact representation if C is built from a line, a circle or a conic curve, <br>
//! - the poles of the curve if C is built from a Bezier curve or a BSpline curve, <br>
//! if not, the points of an approximation of the curve C. <br>
//! Warning <br>
//! C is an adapted curve, that is, an object which is an interface between: <br>
//! - the services provided by a 3D curve from the package Geom <br>
//! - and those required of the curve by the computation algorithm. <br>
//! The adapted curve is created in the following way: <br>
//! Handle(Geom_Curve) mycurve = ... ; <br>
//! GeomAdaptor_Curve C(mycurve); <br>
//! The bounding box B is then enlarged by adding it: <br>
//! Bnd_Box B; <br>
//! // ... <br>
//! Standard_Real Tol = ... ; <br>
//! Add3dCurve::Add ( C, Tol, B ); <br>
//! Exceptions <br>
//! Standard_Failure if the curve is built from: <br>
//! - a Geom_Line, or <br>
//! - a Geom_Parabola, or <br>
//! - a Geom_Hyperbola, <br>
//! and P1 and P2 are either two negative infinite real <br>
//! numbers, or two positive infinite real numbers. <br>
Standard_EXPORT static void Add(const Adaptor3d_Curve& C,const Standard_Real U1,const Standard_Real U2,const Standard_Real Tol,Bnd_Box& B) ;
protected:
private:
};
// other Inline functions and methods (like "C++: function call" methods)
#endif
|