e5bb5a7ce5e988417b803c0a1a7092613f51ee9c
[occt.git] / src / Adaptor3d / Adaptor3d_InterFunc.cxx
1 // Created on: 1998-02-18
2 // Created by: Jeanine PANCIATICI
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
9 // under the terms of the GNU Lesser General Public 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 <Adaptor3d_InterFunc.ixx>
18 #include <Adaptor2d_HCurve2d.hxx>
19 #include <gp_Pnt2d.hxx>
20 #include <gp_Vec2d.hxx>
21
22 Adaptor3d_InterFunc::Adaptor3d_InterFunc(const Handle(Adaptor2d_HCurve2d)& C, const Standard_Real FixVal, const Standard_Integer Fix) : myCurve2d(C),myFixVal(FixVal),myFix(Fix)
23 {
24   if(Fix != 1 && Fix != 2 ) Standard_ConstructionError::Raise();
25
26 }
27
28 Standard_Boolean Adaptor3d_InterFunc::Value(const Standard_Real X , Standard_Real& F)
29 {
30    gp_Pnt2d C;
31    myCurve2d->D0(X,C);
32    if(myFix == 1) 
33       F=C.X()-myFixVal;
34    else
35       F=C.Y()-myFixVal;
36  
37    return Standard_True;
38 }
39 Standard_Boolean Adaptor3d_InterFunc::Derivative(const Standard_Real X , Standard_Real& D)
40 {
41    Standard_Real F;
42    return Values(X,F,D);
43 }
44 Standard_Boolean Adaptor3d_InterFunc::Values(const Standard_Real X , Standard_Real& F,Standard_Real& D)
45 {
46     gp_Pnt2d C;
47     gp_Vec2d DC;
48     myCurve2d->D1(X,C,DC);
49     if(myFix == 1) { 
50       F=C.X()-myFixVal;
51       D=DC.X();}
52     else {
53       F=C.Y()-myFixVal;
54       D=DC.Y();}  
55     return Standard_True;
56 }