0023948: Wrong intersection between a surface of revolution and a plane.
[occt.git] / src / HLRBRep / HLRBRep_CLPropsATool.lxx
1 // Created on: 1992-08-18
2 // Created by: Herve LEGRAND
3 // Copyright (c) 1992-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 #include <Standard_NotImplemented.hxx>
18 #include <HLRBRep_Curve.hxx>
19 #include <GeomAbs_Shape.hxx>
20
21 //=======================================================================
22 //function : Value
23 //purpose  : 
24 //=======================================================================
25
26 inline void  HLRBRep_CLPropsATool::Value
27   (const Standard_Address A, 
28    const Standard_Real U,
29    gp_Pnt2d& P)
30 { P = ((HLRBRep_Curve*)A)->Value(U); }
31
32 //=======================================================================
33 //function : D1
34 //purpose  : 
35 //=======================================================================
36
37 inline void  HLRBRep_CLPropsATool::D1
38   (const Standard_Address A, 
39    const Standard_Real U,
40    gp_Pnt2d& P,
41    gp_Vec2d& V1)
42 { ((HLRBRep_Curve*)A)->D1(U,P,V1); }
43
44 //=======================================================================
45 //function : D2
46 //purpose  : 
47 //=======================================================================
48
49 inline void  HLRBRep_CLPropsATool::D2
50   (const Standard_Address A, 
51    const Standard_Real U,
52    gp_Pnt2d& P,
53    gp_Vec2d& V1,
54    gp_Vec2d& V2)
55 { ((HLRBRep_Curve*)A)->D2(U, P, V1, V2); }
56
57 //=======================================================================
58 //function : D3
59 //purpose  : 
60 //=======================================================================
61
62 inline void  HLRBRep_CLPropsATool::D3
63   (const Standard_Address A, 
64    const Standard_Real U,
65    gp_Pnt2d& P,
66    gp_Vec2d& V1,
67    gp_Vec2d& V2,
68    gp_Vec2d& V3)
69 { ((HLRBRep_Curve*)A)->D3(U, P, V1, V2, V3); }
70
71 //=======================================================================
72 //function : Continuity
73 //purpose  : 
74 //=======================================================================
75
76 inline Standard_Integer  HLRBRep_CLPropsATool::Continuity
77   (const Standard_Address)
78 { return GeomAbs_C2; }
79
80 //=======================================================================
81 //function : FirstParameter
82 //purpose  : 
83 //=======================================================================
84
85 inline Standard_Real  HLRBRep_CLPropsATool::FirstParameter
86   (const Standard_Address A)
87 { return ((HLRBRep_Curve*)A)->FirstParameter(); }
88
89 //=======================================================================
90 //function : LastParameter
91 //purpose  : 
92 //=======================================================================
93
94 inline Standard_Real  HLRBRep_CLPropsATool::LastParameter
95   (const Standard_Address A)
96 { return ((HLRBRep_Curve*)A)->LastParameter(); }