0028248: [Regression] HLR Algo result is retrieved from the last added shape only
[occt.git] / src / HLRBRep / HLRBRep_CLPropsATool.lxx
CommitLineData
b311480e 1// Created on: 1992-08-18
2// Created by: Herve LEGRAND
3// Copyright (c) 1992-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 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
973c2be1 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.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
17#include <Standard_NotImplemented.hxx>
18#include <HLRBRep_Curve.hxx>
19#include <GeomAbs_Shape.hxx>
20
21//=======================================================================
22//function : Value
23//purpose :
24//=======================================================================
25
26inline void HLRBRep_CLPropsATool::Value
681f3919 27 (const HLRBRep_Curve* A,
7fd59977 28 const Standard_Real U,
29 gp_Pnt2d& P)
681f3919 30{ P = A->Value(U); }
7fd59977 31
32//=======================================================================
33//function : D1
34//purpose :
35//=======================================================================
36
37inline void HLRBRep_CLPropsATool::D1
681f3919 38 (const HLRBRep_Curve* A,
7fd59977 39 const Standard_Real U,
40 gp_Pnt2d& P,
41 gp_Vec2d& V1)
681f3919 42{ A->D1(U,P,V1); }
7fd59977 43
44//=======================================================================
45//function : D2
46//purpose :
47//=======================================================================
48
49inline void HLRBRep_CLPropsATool::D2
681f3919 50 (const HLRBRep_Curve* A,
7fd59977 51 const Standard_Real U,
52 gp_Pnt2d& P,
53 gp_Vec2d& V1,
54 gp_Vec2d& V2)
681f3919 55{ A->D2(U, P, V1, V2); }
7fd59977 56
57//=======================================================================
58//function : D3
59//purpose :
60//=======================================================================
61
62inline void HLRBRep_CLPropsATool::D3
681f3919 63 (const HLRBRep_Curve* A,
7fd59977 64 const Standard_Real U,
65 gp_Pnt2d& P,
66 gp_Vec2d& V1,
67 gp_Vec2d& V2,
68 gp_Vec2d& V3)
681f3919 69{ A->D3(U, P, V1, V2, V3); }
7fd59977 70
71//=======================================================================
72//function : Continuity
73//purpose :
74//=======================================================================
75
76inline Standard_Integer HLRBRep_CLPropsATool::Continuity
681f3919 77 (const HLRBRep_Curve*)
7fd59977 78{ return GeomAbs_C2; }
79
80//=======================================================================
81//function : FirstParameter
82//purpose :
83//=======================================================================
84
85inline Standard_Real HLRBRep_CLPropsATool::FirstParameter
681f3919 86 (const HLRBRep_Curve* A)
87{ return A->FirstParameter(); }
7fd59977 88
89//=======================================================================
90//function : LastParameter
91//purpose :
92//=======================================================================
93
94inline Standard_Real HLRBRep_CLPropsATool::LastParameter
681f3919 95 (const HLRBRep_Curve* A)
96{ return A->LastParameter(); }