0024002: Overall code and build procedure refactoring -- automatic
[occt.git] / src / BRepFill / BRepFill_SectionPlacement.hxx
CommitLineData
42cf5bc1 1// Created on: 1998-02-11
2// Created by: Philippe MANGIN
3// Copyright (c) 1998-1999 Matra Datavision
4// Copyright (c) 1999-2014 OPEN CASCADE SAS
5//
6// This file is part of Open CASCADE Technology software library.
7//
8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
13//
14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
16
17#ifndef _BRepFill_SectionPlacement_HeaderFile
18#define _BRepFill_SectionPlacement_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_DefineAlloc.hxx>
22#include <Standard_Handle.hxx>
23
24#include <TopoDS_Shape.hxx>
25#include <gp_Trsf.hxx>
26#include <Standard_Real.hxx>
27#include <Standard_Integer.hxx>
28#include <Standard_Boolean.hxx>
29class BRepFill_LocationLaw;
30class TopoDS_Shape;
31class gp_Trsf;
32
33
34//! Place a shape in a local axis coordinate
35class BRepFill_SectionPlacement
36{
37public:
38
39 DEFINE_STANDARD_ALLOC
40
41
42 //! Automatic placement
43 Standard_EXPORT BRepFill_SectionPlacement(const Handle(BRepFill_LocationLaw)& Law, const TopoDS_Shape& Section, const Standard_Boolean WithContact = Standard_False, const Standard_Boolean WithCorrection = Standard_False);
44
45 //! Placement on vertex
46 Standard_EXPORT BRepFill_SectionPlacement(const Handle(BRepFill_LocationLaw)& Law, const TopoDS_Shape& Section, const TopoDS_Shape& Vertex, const Standard_Boolean WithContact = Standard_False, const Standard_Boolean WithCorrection = Standard_False);
47
48 Standard_EXPORT const gp_Trsf& Transformation() const;
49
50 Standard_EXPORT Standard_Real AbscissaOnPath();
51
52
53
54
55protected:
56
57
58
59
60
61private:
62
63
64 Standard_EXPORT void Perform (const Standard_Boolean WithContact, const Standard_Boolean WithCorrection, const TopoDS_Shape& Vertex);
65
66
67 Handle(BRepFill_LocationLaw) myLaw;
68 TopoDS_Shape mySection;
69 gp_Trsf myTrsf;
70 Standard_Real myParam;
71 Standard_Integer myIndex;
72
73
74};
75
76
77
78
79
80
81
82#endif // _BRepFill_SectionPlacement_HeaderFile