1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-07-30 13:05:50 +03:00
occt/src/BSplSLib/BSplSLib_BzSyntaxes.cxx
akz 0e14656b30 0026042: OCCT won't work with the latest Xcode
Dereferenced null pointers was eliminated for PLib, BSplCLib and BSplSLib. All affected code was changed accordingly.
2015-10-01 13:44:10 +03:00

93 lines
2.7 KiB
C++

// Created on: 1995-10-27
// Created by: Laurent BOURESCHE
// Copyright (c) 1995-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.
// pmn 16-10-96 : Correction de PolesCoefficient (PRO5782)
// ColLength et RowLength avaient encore frappes !!
#define No_Standard_RangeError
#define No_Standard_OutOfRange
#include <BSplSLib.hxx>
#include <BSplCLib.hxx>
#include <TColStd_Array1OfReal.hxx>
//=======================================================================
//function : PolesCoefficients
//purpose :
//=======================================================================
void BSplSLib::PolesCoefficients (const TColgp_Array2OfPnt& Poles,
const TColStd_Array2OfReal* Weights,
TColgp_Array2OfPnt& CachePoles,
TColStd_Array2OfReal* CacheWeights)
{
Standard_Integer i;
Standard_Integer uclas = Poles.ColLength();
Standard_Integer vclas = Poles.RowLength();
TColStd_Array1OfReal biduflatknots(1,uclas << 1);
TColStd_Array1OfReal bidvflatknots(1,vclas << 1);
for(i = 1; i <= uclas; i++) {
biduflatknots(i ) = 0.;
biduflatknots(i + uclas) = 1.;
}
for(i = 1; i <= vclas; i++) {
bidvflatknots(i ) = 0.;
bidvflatknots(i + vclas) = 1.;
}
if ( uclas > vclas) {
BSplSLib::BuildCache(0.,0.,
1.,1.,0,0,
uclas - 1,vclas - 1,0,0,
biduflatknots,bidvflatknots,
Poles,Weights,
CachePoles,CacheWeights);
}
else {
// BuilCache exige que les resultats soient formates en [MaxCoeff,MinCoeff]
TColgp_Array2OfPnt CPoles (1,vclas, 1, uclas);
TColStd_Array2OfReal CWeights(1,vclas, 1, uclas);
Standard_Integer ii, jj;
BSplSLib::BuildCache(0.,0.,
1.,1.,0,0,
uclas - 1,vclas - 1,0,0,
biduflatknots,bidvflatknots,
Poles,Weights,
CPoles,&CWeights);
if (Weights == NULL) {
for (ii = 1; ii <= uclas; ii++) {
for (jj = 1; jj <= vclas; jj++) {
CachePoles(ii, jj) = CPoles(jj, ii);
}
}
}
else {
for (ii = 1; ii <= uclas; ii++) {
for (jj = 1; jj <= vclas; jj++) {
CachePoles (ii, jj) = CPoles (jj, ii);
(*CacheWeights)(ii, jj) = CWeights(jj, ii);
}
}
}
}
}