1 // File: IntCurve_ToolPolygon.gxx
2 // Created: Thu Jun 3 14:52:18 1993
3 // Author: Laurent BUCHARD
10 //=================================================================
11 inline const BoundingBox& IntCurve_ToolPolygon::Bounding
12 (const Polygon& thePolygon)
14 return thePolygon.Bounding();
16 //=================================================================
17 inline Standard_Real IntCurve_ToolPolygon::DeflectionOverEstimation
18 (const Polygon& thePolygon)
20 return thePolygon.DeflectionOverEstimation();
22 //=================================================================
23 inline Standard_Boolean IntCurve_ToolPolygon::Closed
24 (const Polygon& thePolygon)
26 return thePolygon.Closed();
28 //=================================================================
29 inline Standard_Integer IntCurve_ToolPolygon::NbSegments
30 (const Polygon& thePolygon)
32 return thePolygon.NbSegments();
34 //=================================================================
35 inline const Point& IntCurve_ToolPolygon::BeginOfSeg
36 (const Polygon& thePolygon,
37 const Standard_Integer Index)
39 return thePolygon.BeginOfSeg(Index);
41 //=================================================================
42 inline const Point& IntCurve_ToolPolygon::EndOfSeg
43 (const Polygon& thePolygon,
44 const Standard_Integer Index)
46 return thePolygon.EndOfSeg(Index);
48 //=================================================================