mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-26 10:19:45 +03:00
140 lines
4.2 KiB
C++
140 lines
4.2 KiB
C++
// Created on: 1996-11-26
|
|
// Created by: Philippe MANGIN
|
|
// Copyright (c) 1996-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 <BRepBlend_AppSurface.hxx>
|
|
#include <TColgp_Array1OfPnt.hxx>
|
|
#include <TColgp_Array1OfPnt2d.hxx>
|
|
#include <TColgp_Array1OfVec.hxx>
|
|
#include <TColgp_Array1OfVec2d.hxx>
|
|
#include <TColStd_Array1OfReal.hxx>
|
|
|
|
BRepBlend_AppSurface::BRepBlend_AppSurface(
|
|
const Handle(Approx_SweepFunction)& Func,
|
|
const Standard_Real First,
|
|
const Standard_Real Last,
|
|
const Standard_Real Tol3d,
|
|
const Standard_Real Tol2d,
|
|
const Standard_Real TolAngular,
|
|
const GeomAbs_Shape Continuity,
|
|
const Standard_Integer Degmax,
|
|
const Standard_Integer Segmax) :
|
|
approx(Func)
|
|
{
|
|
Standard_Integer Nb2d = Func->Nb2dCurves();
|
|
Standard_Integer NbPolSect, NbKnotSect, udeg;
|
|
GeomAbs_Shape continuity = Continuity;
|
|
|
|
// (1) Verification de la possibilite de derivation
|
|
if (continuity != GeomAbs_C0) {
|
|
if (Nb2d == 0) Nb2d =1;
|
|
Func->SectionShape(NbPolSect, NbKnotSect, udeg);
|
|
TColStd_Array1OfReal W (1, NbPolSect);
|
|
TColgp_Array1OfPnt P (1, NbPolSect);
|
|
TColgp_Array1OfPnt2d P2d(1, Nb2d);
|
|
TColgp_Array1OfVec V (1, NbPolSect);
|
|
TColgp_Array1OfVec2d V2d(1, Nb2d);
|
|
Standard_Boolean Ok;
|
|
if (continuity == GeomAbs_C2) {
|
|
Ok = Func->D2( First, First, Last, P, V, V, P2d, V2d, V2d, W, W, W);
|
|
if (!Ok) { continuity = GeomAbs_C1; }
|
|
}
|
|
if (continuity == GeomAbs_C1) {
|
|
Ok = (Func->D1(First, First, Last, P, V, P2d, V2d, W, W));
|
|
if (!Ok) { continuity = GeomAbs_C0; }
|
|
}
|
|
}
|
|
|
|
|
|
// (2) Approximation
|
|
approx.Perform(First, Last,
|
|
Tol3d, Tol3d, Tol2d, TolAngular,
|
|
continuity, Degmax, Segmax);
|
|
}
|
|
|
|
void BRepBlend_AppSurface::SurfShape (Standard_Integer& UDegree,
|
|
Standard_Integer& VDegree,
|
|
Standard_Integer& NbUPoles,
|
|
Standard_Integer& NbVPoles,
|
|
Standard_Integer& NbUKnots,
|
|
Standard_Integer& NbVKnots) const
|
|
{
|
|
approx.SurfShape(UDegree, VDegree,
|
|
NbUPoles, NbVPoles,
|
|
NbUKnots,NbVKnots);
|
|
}
|
|
|
|
|
|
void BRepBlend_AppSurface::Surface(TColgp_Array2OfPnt& TPoles,
|
|
TColStd_Array2OfReal& TWeights,
|
|
TColStd_Array1OfReal& TUKnots,
|
|
TColStd_Array1OfReal& TVKnots,
|
|
TColStd_Array1OfInteger& TUMults,
|
|
TColStd_Array1OfInteger& TVMults) const
|
|
|
|
{
|
|
approx.Surface(TPoles, TWeights, TUKnots,TVKnots, TUMults,TVMults);
|
|
}
|
|
|
|
|
|
Standard_Real BRepBlend_AppSurface::MaxErrorOnSurf() const
|
|
{
|
|
return approx.MaxErrorOnSurf();
|
|
}
|
|
|
|
|
|
void BRepBlend_AppSurface::Curves2dShape(Standard_Integer& Degree,
|
|
Standard_Integer& NbPoles,
|
|
Standard_Integer& NbKnots) const
|
|
{
|
|
approx.Curves2dShape( Degree, NbPoles, NbKnots);
|
|
}
|
|
|
|
void BRepBlend_AppSurface::Curve2d(const Standard_Integer Index,
|
|
TColgp_Array1OfPnt2d& TPoles,
|
|
TColStd_Array1OfReal& TKnots,
|
|
TColStd_Array1OfInteger& TMults) const
|
|
{
|
|
approx.Curve2d(Index, TPoles, TKnots, TMults);
|
|
}
|
|
|
|
Standard_Real BRepBlend_AppSurface::Max2dError(const Standard_Integer Index) const
|
|
{
|
|
return approx.Max2dError(Index);
|
|
}
|
|
|
|
|
|
Standard_Real BRepBlend_AppSurface::TolCurveOnSurf(const Standard_Integer Index) const
|
|
{
|
|
return approx.TolCurveOnSurf(Index);
|
|
}
|
|
|
|
void BRepBlend_AppSurface::TolReached (Standard_Real& Tol3d,
|
|
Standard_Real& Tol2d) const
|
|
{
|
|
Tol3d = approx.MaxErrorOnSurf();
|
|
Tol2d = 0;
|
|
for (Standard_Integer ii=1; ii<=approx.NbCurves2d(); ii++) {
|
|
Tol2d = Max(Tol2d, approx.Max2dError(ii));
|
|
}
|
|
}
|
|
|
|
void BRepBlend_AppSurface::Dump(Standard_OStream& o) const
|
|
{
|
|
approx.Dump(o);
|
|
}
|