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
|
// 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 _GC_MakeTrimmedCone_HeaderFile
#define _GC_MakeTrimmedCone_HeaderFile
#ifndef _Standard_HeaderFile
#include <Standard.hxx>
#endif
#ifndef _Standard_Macro_HeaderFile
#include <Standard_Macro.hxx>
#endif
#ifndef _Handle_Geom_RectangularTrimmedSurface_HeaderFile
#include <Handle_Geom_RectangularTrimmedSurface.hxx>
#endif
#ifndef _GC_Root_HeaderFile
#include <GC_Root.hxx>
#endif
#ifndef _Standard_Real_HeaderFile
#include <Standard_Real.hxx>
#endif
class Geom_RectangularTrimmedSurface;
class StdFail_NotDone;
class gp_Pnt;
//! Implements construction algorithms for a trimmed <br>
//! cone limited by two planes orthogonal to its axis. The <br>
//! result is a Geom_RectangularTrimmedSurface surface. <br>
//! A MakeTrimmedCone provides a framework for: <br>
//! - defining the construction of the trimmed cone, <br>
//! - implementing the construction algorithm, and <br>
//! - consulting the results. In particular, the Value <br>
//! function returns the constructed trimmed cone. <br>
class GC_MakeTrimmedCone : public GC_Root {
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);
}
//! Make a RectangularTrimmedSurface <TheCone> from Geom <br>
//! It is trimmed by P3 and P4. <br>
//! Its axis is <P1P2> and the radius of its base is <br>
//! the distance between <P3> and <P1P2>. <br>
//! The distance between <P4> and <P1P2> is the radius of <br>
//! the section passing through <P4>. <br>
//! An error iss raised if <P1>,<P2>,<P3>,<P4> are <br>
//! colinear or if <P3P4> is perpendicular to <P1P2> or <br>
//! <P3P4> is colinear to <P1P2>. <br>
Standard_EXPORT GC_MakeTrimmedCone(const gp_Pnt& P1,const gp_Pnt& P2,const gp_Pnt& P3,const gp_Pnt& P4);
//! Make a RectangularTrimmedSurface from Geom <TheCone> <br>
//! from a cone and trimmed by two points P1 and P2 and <br>
//! the two radius <R1> and <R2> of the sections passing <br>
//! through <P1> an <P2>. <br>
//! Warning <br>
//! If an error occurs (that is, when IsDone returns <br>
//! false), the Status function returns: <br>
//! - gce_ConfusedPoints if points P1 and P2, or P3 and P4, are coincident; <br>
//! - gce_NullAngle if: <br>
//! - the lines joining P1 to P2 and P3 to P4 are parallel, or <br>
//! - R1 and R2 are equal (i.e. their difference is less than gp::Resolution()); <br>
//! - gce_NullRadius if: <br>
//! - the line joining P1 to P2 is perpendicular to the line joining P3 to P4, or <br>
//! - the points P1, P2, P3 and P4 are collinear; <br>
//! - gce_NegativeRadius if R1 or R2 is negative; or <br>
//! - gce_NullAxis if points P1 and P2 are coincident (2nd syntax only). <br>
Standard_EXPORT GC_MakeTrimmedCone(const gp_Pnt& P1,const gp_Pnt& P2,const Standard_Real R1,const Standard_Real R2);
//! Returns the constructed trimmed cone. <br>
//! StdFail_NotDone if no trimmed cone is constructed. <br>
Standard_EXPORT const Handle_Geom_RectangularTrimmedSurface& Value() const;
Standard_EXPORT const Handle_Geom_RectangularTrimmedSurface& Operator() const;
Standard_EXPORT operator Handle_Geom_RectangularTrimmedSurface() const;
protected:
private:
Handle_Geom_RectangularTrimmedSurface TheCone;
};
// other Inline functions and methods (like "C++: function call" methods)
#endif
|