blob: 54f354807370be941be633ce4778b75fdd9d048c (
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
|
//--------------------------------------------------------------------
//
// File Name : IGESGeom_TrimmedSurface.cxx
// Date :
// Author : CKY / Contract Toubro-Larsen
// Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------
#include <IGESGeom_TrimmedSurface.ixx>
#include <Standard_DimensionMismatch.hxx>
IGESGeom_TrimmedSurface::IGESGeom_TrimmedSurface () { }
void IGESGeom_TrimmedSurface::Init
(const Handle(IGESData_IGESEntity)& aSurface,
const Standard_Integer aFlag,
const Handle(IGESGeom_CurveOnSurface)& anOuter,
const Handle(IGESGeom_HArray1OfCurveOnSurface)& anInner)
{
if (!anInner.IsNull())
if (anInner->Lower() != 1)
Standard_DimensionMismatch::Raise("IGESGeom_TrimmedSurface : Init");
theSurface = aSurface;
theFlag = aFlag;
theOuterCurve = anOuter;
theInnerCurves = anInner;
InitTypeAndForm(144,0);
}
Handle(IGESData_IGESEntity) IGESGeom_TrimmedSurface::Surface () const
{
return theSurface;
}
Standard_Boolean IGESGeom_TrimmedSurface::HasOuterContour () const
{
return (! theOuterCurve.IsNull());
}
Handle(IGESGeom_CurveOnSurface) IGESGeom_TrimmedSurface::OuterContour () const
{
return theOuterCurve;
}
Standard_Integer IGESGeom_TrimmedSurface::NbInnerContours () const
{
return (theInnerCurves.IsNull() ? 0 : theInnerCurves->Length());
}
Standard_Integer IGESGeom_TrimmedSurface::OuterBoundaryType () const
{
return theFlag;
}
Handle(IGESGeom_CurveOnSurface) IGESGeom_TrimmedSurface::InnerContour
(const Standard_Integer anIndex) const
{
return (theInnerCurves->Value(anIndex));
// Exception OutOfRange will be raises if anIndex <= 0 or
// anIndex > NbInnerCounters()
}
|