1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-06 10:36:12 +03:00
occt/src/ChFi3d/ChFi3d_SearchSing.cxx
bugmster 973c2be1e1 0024428: Implementation of LGPL license
The copying permission statements at the beginning of source files updated to refer to LGPL.
Copyright dates extended till 2014 in advance.
2013-12-17 12:42:41 +04:00

70 lines
1.8 KiB
C++

// Created on: 1997-03-28
// Created by: Philippe MANGIN
// Copyright (c) 1997-1999 Matra Datavision
// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and / or modify it
// under the terms of the GNU Lesser General Public version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#include <ChFi3d_SearchSing.ixx>
#include <gp_Pnt.hxx>
#include <gp_Vec.hxx>
ChFi3d_SearchSing::ChFi3d_SearchSing(const Handle(Geom_Curve)& C1,
const Handle(Geom_Curve)& C2)
{
myC1 = C1;
myC2 = C2;
}
Standard_Boolean ChFi3d_SearchSing::Value(const Standard_Real X,
Standard_Real& F)
{
gp_Pnt P1, P2;
gp_Vec V1, V2;
myC1->D1(X, P1, V1);
myC2->D1(X, P2, V2);
gp_Vec V(P1,P2);
F = V * (V2-V1);
return Standard_True;
}
Standard_Boolean ChFi3d_SearchSing::Derivative(const Standard_Real X,
Standard_Real& D )
{
gp_Pnt P1, P2;
gp_Vec V1, V2, W1, W2;
myC1->D2(X, P1, V1, W1);
myC2->D2(X, P2, V2, W2);
gp_Vec V(P1,P2), VPrim;
VPrim = V2 -V1;
D = VPrim.SquareMagnitude() + (V * (W2-W1));
return Standard_True;
}
Standard_Boolean ChFi3d_SearchSing::Values(const Standard_Real X,
Standard_Real& F,
Standard_Real& D )
{
gp_Pnt P1, P2;
gp_Vec V1, V2, W1, W2;
myC1->D2(X, P1, V1, W1);
myC2->D2(X, P2, V2, W2);
gp_Vec V(P1,P2), VPrim;
VPrim = V2 -V1;
F = V * VPrim;
D = VPrim.SquareMagnitude() + (V * (W2-W1));
return Standard_True;
}