blob: f0350694a41d716327a2a1a5b7dfad0f9c417c5a (
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
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
|
// File: ShapeUpgrade_SplitSurfaceAngle.cxx
// Created: Thu May 6 10:51:57 1999
// Author: data exchange team
// <det@friendox.nnov.matra-dtv.fr>
#include <ShapeUpgrade_SplitSurfaceAngle.ixx>
#include <Geom_SurfaceOfRevolution.hxx>
#include <Geom_ConicalSurface.hxx>
#include <Geom_ToroidalSurface.hxx>
#include <Geom_CylindricalSurface.hxx>
#include <Geom_SphericalSurface.hxx>
#include <TColStd_HSequenceOfReal.hxx>
#include <ShapeExtend.hxx>
#include <Geom_RectangularTrimmedSurface.hxx>
#include <Geom_OffsetSurface.hxx>
#include <Precision.hxx>
//=======================================================================
//function : ShapeUpgrade_SplitSurfaceAngle
//purpose :
//=======================================================================
ShapeUpgrade_SplitSurfaceAngle::ShapeUpgrade_SplitSurfaceAngle (const Standard_Real MaxAngle)
{
myMaxAngle = MaxAngle;
}
//=======================================================================
//function : SetMaxAngle
//purpose :
//=======================================================================
void ShapeUpgrade_SplitSurfaceAngle::SetMaxAngle (const Standard_Real MaxAngle)
{
myMaxAngle = MaxAngle;
}
//=======================================================================
//function : MaxAngle
//purpose :
//=======================================================================
double ShapeUpgrade_SplitSurfaceAngle::MaxAngle () const
{
return myMaxAngle;
}
//=======================================================================
//function : Compute
//purpose :
//=======================================================================
void ShapeUpgrade_SplitSurfaceAngle::Compute(const Standard_Boolean /*Segment*/)
{
Handle(Geom_Surface) S;
Standard_Real U1 = 0.0,U2 = 0.0;
Standard_Boolean isRect = Standard_False;
if(mySurface->IsKind(STANDARD_TYPE(Geom_RectangularTrimmedSurface))){
Handle(Geom_RectangularTrimmedSurface) rts =
Handle(Geom_RectangularTrimmedSurface)::DownCast(mySurface);
isRect = Standard_True;
Standard_Real V1,V2;
rts->Bounds(U1,U2,V1,V2);
S = rts->BasisSurface();
}
else if (mySurface->IsKind(STANDARD_TYPE(Geom_OffsetSurface))) {
Handle(Geom_OffsetSurface) ofs =
Handle(Geom_OffsetSurface)::DownCast(mySurface);
S = ofs->BasisSurface();
}
else
S = mySurface;
if(S->IsKind(STANDARD_TYPE(Geom_SurfaceOfRevolution))||
S->IsKind(STANDARD_TYPE(Geom_ConicalSurface))||
S->IsKind(STANDARD_TYPE(Geom_ToroidalSurface))||
S->IsKind(STANDARD_TYPE(Geom_CylindricalSurface))||
S->IsKind(STANDARD_TYPE(Geom_SphericalSurface))) {
Standard_Real UFirst = myUSplitValues->Sequence().First();
Standard_Real ULast = myUSplitValues->Sequence().Last();
Standard_Real maxAngle = myMaxAngle; //maximal u length of segment
Standard_Real uLength = ULast-UFirst;
Standard_Integer nbSegments = Standard_Integer((uLength-Precision::Angular())/maxAngle)+1;
if(nbSegments==1)
if(!isRect || !(uLength < maxAngle) || !((U2-U1) < maxAngle))
myStatus = ShapeExtend::EncodeStatus (ShapeExtend_DONE2);
Standard_Real segAngle = uLength/nbSegments;
Standard_Real currAngle = segAngle+UFirst;
Handle(TColStd_HSequenceOfReal) splitValues = new TColStd_HSequenceOfReal;
for( Standard_Integer i = 1; i < nbSegments; i++, currAngle+=segAngle)
splitValues->Append(currAngle);
SetUSplitValues ( splitValues );
}
}
|