mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
New clang-format configuration added to determinate code style. The default version is 16. Extend CMake to copy config file to build root. Method/function separator deprecation: In case if function/method has declaration in header, definition must not have related comment. Only //==== [100 chars] ==== is allowed as a not connected separator. In case if function/method has NOT declaration in header, definition must have related comment in doxygen style: // Descriptions // @param // @return Or just function/method separator: //==== [100 chars] ==== All old separators with no description must be replaced to //==== [100 chars] ====
87 lines
4.0 KiB
C++
87 lines
4.0 KiB
C++
// Created on: 1997-06-25
|
|
// 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 License 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 <Approx_SweepFunction.hxx>
|
|
#include <Standard_NotImplemented.hxx>
|
|
#include <Standard_Type.hxx>
|
|
#include <gp_Pnt.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(Approx_SweepFunction, Standard_Transient)
|
|
|
|
// Standard_Boolean Approx_SweepFunction::D1(const Standard_Real Param,const Standard_Real
|
|
// First,const Standard_Real Last,TColgp_Array1OfPnt& Poles,TColgp_Array1OfVec&
|
|
// DPoles,TColgp_Array1OfPnt2d& Poles2d,TColgp_Array1OfVec2d& DPoles2d,TColStd_Array1OfReal&
|
|
// Weigths,TColStd_Array1OfReal& DWeigths)
|
|
Standard_Boolean Approx_SweepFunction::D1(const Standard_Real,
|
|
const Standard_Real,
|
|
const Standard_Real,
|
|
TColgp_Array1OfPnt&,
|
|
TColgp_Array1OfVec&,
|
|
TColgp_Array1OfPnt2d&,
|
|
TColgp_Array1OfVec2d&,
|
|
TColStd_Array1OfReal&,
|
|
TColStd_Array1OfReal&)
|
|
{
|
|
throw Standard_NotImplemented("Approx_SweepFunction::D1");
|
|
}
|
|
|
|
// Standard_Boolean Approx_SweepFunction::D2(const Standard_Real Param,const Standard_Real
|
|
// First,const Standard_Real Last,TColgp_Array1OfPnt& Poles,TColgp_Array1OfVec&
|
|
// DPoles,TColgp_Array1OfVec& D2Poles,TColgp_Array1OfPnt2d& Poles2d,TColgp_Array1OfVec2d&
|
|
// DPoles2d,TColgp_Array1OfVec2d& D2Poles2d,TColStd_Array1OfReal& Weigths,TColStd_Array1OfReal&
|
|
// DWeigths,TColStd_Array1OfReal& D2Weigths)
|
|
Standard_Boolean Approx_SweepFunction::D2(const Standard_Real,
|
|
const Standard_Real,
|
|
const Standard_Real,
|
|
TColgp_Array1OfPnt&,
|
|
TColgp_Array1OfVec&,
|
|
TColgp_Array1OfVec&,
|
|
TColgp_Array1OfPnt2d&,
|
|
TColgp_Array1OfVec2d&,
|
|
TColgp_Array1OfVec2d&,
|
|
TColStd_Array1OfReal&,
|
|
TColStd_Array1OfReal&,
|
|
TColStd_Array1OfReal&)
|
|
{
|
|
throw Standard_NotImplemented("Approx_SweepFunction::D2");
|
|
}
|
|
|
|
// void Approx_SweepFunction::Resolution(const Standard_Integer Index,const Standard_Real
|
|
// Tol,Standard_Real& TolU,Standard_Real& TolV) const
|
|
void Approx_SweepFunction::Resolution(const Standard_Integer,
|
|
const Standard_Real,
|
|
Standard_Real&,
|
|
Standard_Real&) const
|
|
{
|
|
throw Standard_NotImplemented("Approx_SweepFunction::Resolution");
|
|
}
|
|
|
|
gp_Pnt Approx_SweepFunction::BarycentreOfSurf() const
|
|
{
|
|
throw Standard_NotImplemented("Approx_SweepFunction::BarycentreOfSurf");
|
|
}
|
|
|
|
Standard_Real Approx_SweepFunction::MaximalSection() const
|
|
{
|
|
throw Standard_NotImplemented("Approx_SweepFunction::MaximalSection()");
|
|
}
|
|
|
|
// void Approx_SweepFunction::GetMinimalWeight(TColStd_Array1OfReal& Weigths) const
|
|
void Approx_SweepFunction::GetMinimalWeight(TColStd_Array1OfReal&) const
|
|
{
|
|
throw Standard_NotImplemented("Approx_SweepFunction::GetMinimalWeight");
|
|
}
|