1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-03 14:10:33 +03:00

Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
// File: BRepBlend_AppFunc.cxx
// Created: Tue Nov 26 09:53:06 1996
// Author: Philippe MANGIN
// <pmn@sgi29>
#include <BRepBlend_AppFunc.ixx>
BRepBlend_AppFunc::BRepBlend_AppFunc(Handle(BRepBlend_Line)& Line,
Blend_Function& Func,
const Standard_Real Tol3d,
const Standard_Real Tol2d)
:BRepBlend_AppFuncRoot(Line,Func,Tol3d,Tol2d)
{
}
void BRepBlend_AppFunc::Point(const Blend_AppFunction& Func,
const Standard_Real Param,
const math_Vector& Sol,
Blend_Point& Pnt)const
{
Pnt.SetValue(Func.Pnt1(), Func.Pnt2(),
Param,
Sol(1), Sol(2), Sol(3), Sol(4));
}
void BRepBlend_AppFunc::Vec(math_Vector& Sol,
const Blend_Point& Pnt)const
{
Pnt.ParametersOnS1(Sol(1),Sol(2));
Pnt.ParametersOnS2(Sol(3),Sol(4));
}