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
|
// File: GC_MakeTrimmedCylinder.cxx
// Created: Fri Oct 2 16:38:49 1992
// Author: Remi GILET
// <reg@topsn3>
#include <GC_MakeTrimmedCylinder.ixx>
#include <GC_MakeCylindricalSurface.hxx>
#include <StdFail_NotDone.hxx>
#include <Standard_NotImplemented.hxx>
//=========================================================================
// Creation d un cylindre limite par trois points <P1>, <P2> et <P3>. +
// le cylindre resultat a comme hauteur la distance de <P1> a <P2>. +
// Il a comme rayon la distance de <P3> a l axe <P1P2>. +
//=========================================================================
GC_MakeTrimmedCylinder::GC_MakeTrimmedCylinder(const gp_Pnt& P1 ,
const gp_Pnt& P2 ,
const gp_Pnt& P3 )
{
GC_MakeCylindricalSurface Cyl(P1,P2,P3);
TheError = Cyl.Status();
if (TheError == gce_Done) {
TheCyl = new Geom_RectangularTrimmedSurface(Cyl.Value(),0.,2.*PI,0.,
P2.Distance(P1),Standard_True,Standard_True);
}
}
//=========================================================================
// Creation d un cylindre limite par un cercle et une hauteur. +
//=========================================================================
GC_MakeTrimmedCylinder::GC_MakeTrimmedCylinder(const gp_Circ& Circ ,
const Standard_Real Height ) {
GC_MakeCylindricalSurface Cyl(Circ);
TheError = Cyl.Status();
if (TheError == gce_Done) {
TheCyl = new Geom_RectangularTrimmedSurface(Cyl.Value(),0.,2.*PI,0.,
Height,Standard_True,Standard_True);
}
}
//=========================================================================
//=========================================================================
GC_MakeTrimmedCylinder::GC_MakeTrimmedCylinder(const gp_Ax1& A1 ,
const Standard_Real Radius ,
const Standard_Real Height ) {
GC_MakeCylindricalSurface Cyl(A1,Radius);
TheError = Cyl.Status();
if (TheError == gce_Done) {
TheCyl = new Geom_RectangularTrimmedSurface(Cyl.Value(),0.,2.*PI,0.,
Height,Standard_True,Standard_True);
}
}
GC_MakeTrimmedCylinder::GC_MakeTrimmedCylinder(const gp_Cylinder& , // Cyl,
const gp_Pnt& , // P,
const Standard_Real )//Height)
{
Standard_NotImplemented::Raise("GC_MakeTrimmedCylinder");
}
GC_MakeTrimmedCylinder::GC_MakeTrimmedCylinder(const gp_Cylinder& , // Cyl,
const gp_Pnt& , // P1,
const gp_Pnt& ) // P2)
{
Standard_NotImplemented::Raise("GC_MakeTrimmedCylinder");
}
const Handle(Geom_RectangularTrimmedSurface)& GC_MakeTrimmedCylinder::
Value() const
{
StdFail_NotDone_Raise_if(!TheError == gce_Done,"");
return TheCyl;
}
const Handle(Geom_RectangularTrimmedSurface)& GC_MakeTrimmedCylinder::
Operator() const
{
return Value();
}
GC_MakeTrimmedCylinder::
operator Handle(Geom_RectangularTrimmedSurface) () const
{
return Value();
}
|