1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-29 14:00:49 +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

312
src/GeomFill/GeomFill_Curved.cxx Executable file
View File

@@ -0,0 +1,312 @@
// File: GeomFill_Curved.cxx
// Created: Tue Sep 28 17:58:37 1993
// Author: Bruno DUMORTIER
// <dub@sdsun1>
#include <GeomFill_Curved.ixx>
#include <gp_Pnt.hxx>
#include <gp_Vec.hxx>
#include <TColStd_Array1OfReal.hxx>
#include <TColgp_HArray2OfPnt.hxx>
#include <TColStd_HArray2OfReal.hxx>
#include <Standard_NotImplemented.hxx>
//=======================================================================
//function : GeomFill_Curved
//purpose :
//=======================================================================
GeomFill_Curved::GeomFill_Curved()
{
}
//=======================================================================
//function : GeomFill_Curved
//purpose :
//=======================================================================
GeomFill_Curved::GeomFill_Curved(const TColgp_Array1OfPnt& P1,
const TColgp_Array1OfPnt& P2,
const TColgp_Array1OfPnt& P3,
const TColgp_Array1OfPnt& P4)
{
Init(P1, P2, P3, P4);
}
//=======================================================================
//function : GeomFill_Curved
//purpose :
//=======================================================================
GeomFill_Curved::GeomFill_Curved(const TColgp_Array1OfPnt& P1,
const TColgp_Array1OfPnt& P2,
const TColgp_Array1OfPnt& P3,
const TColgp_Array1OfPnt& P4,
const TColStd_Array1OfReal& W1,
const TColStd_Array1OfReal& W2,
const TColStd_Array1OfReal& W3,
const TColStd_Array1OfReal& W4)
{
Init(P1, P2, P3, P4, W1, W2, W3, W4);
}
//=======================================================================
//function : GeomFill_Curved
//purpose :
//=======================================================================
GeomFill_Curved::GeomFill_Curved(const TColgp_Array1OfPnt& P1,
const TColgp_Array1OfPnt& P2,
const TColgp_Array1OfPnt& P3)
{
Init(P1, P2, P3);
}
//=======================================================================
//function : GeomFill_Curved
//purpose :
//=======================================================================
GeomFill_Curved::GeomFill_Curved(const TColgp_Array1OfPnt& P1,
const TColgp_Array1OfPnt& P2,
const TColgp_Array1OfPnt& P3,
const TColStd_Array1OfReal& W1,
const TColStd_Array1OfReal& W2,
const TColStd_Array1OfReal& W3)
{
Init(P1, P2, P3, W1, W2, W3);
}
//=======================================================================
//function : GeomFill_Curved
//purpose :
//=======================================================================
GeomFill_Curved::GeomFill_Curved(const TColgp_Array1OfPnt& P1,
const TColgp_Array1OfPnt& P2)
{
Init(P1, P2);
}
//=======================================================================
//function : GeomFill_Curved
//purpose :
//=======================================================================
GeomFill_Curved::GeomFill_Curved(const TColgp_Array1OfPnt& P1,
const TColgp_Array1OfPnt& P2,
const TColStd_Array1OfReal& W1,
const TColStd_Array1OfReal& W2)
{
Init(P1, P2, W1, W2);
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void GeomFill_Curved::Init(const TColgp_Array1OfPnt& P1,
const TColgp_Array1OfPnt& P2,
const TColgp_Array1OfPnt& P3,
const TColgp_Array1OfPnt& P4)
{
Standard_DomainError_Raise_if
( P1.Length() != P3.Length() || P2.Length() != P4.Length()," ");
Standard_Integer NPolU = P1.Length();
Standard_Integer NPolV = P2.Length();
IsRational = Standard_False;
Standard_Real NU = NPolU - 1;
Standard_Real NV = NPolV - 1;
myPoles = new TColgp_HArray2OfPnt( 1, NPolU, 1, NPolV);
// The boundaries are not modified
Standard_Integer i,j,k;
for ( i=1; i<=NPolU; i++) {
myPoles->SetValue( i, 1 , P1(i));
myPoles->SetValue( i, NPolV, P3(i));
}
Standard_Real PU,PU1,PV,PV1;
for ( j=2; j<=NPolV-1; j++) {
PV = (j-1)/NV;
PV1 = 1 - PV;
PV /= 2.;
PV1 /= 2.;
myPoles->SetValue( 1 , j, P4(j));
myPoles->SetValue( NPolU, j, P2(j));
for ( i=2; i<=NPolU-1; i++) {
PU = (i-1)/NU;
PU1 = 1 - PU;
PU /= 2.;
PU1 /= 2.;
gp_Pnt P;
for (k=1; k<=3; k++) {
P.SetCoord(k,
PV1 * P1(i).Coord(k) + PV * P3(i).Coord(k) +
PU * P2(j).Coord(k) + PU1 * P4(j).Coord(k) );
}
myPoles->SetValue(i,j,P);
}
}
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void GeomFill_Curved::Init(const TColgp_Array1OfPnt& P1,
const TColgp_Array1OfPnt& P2,
const TColgp_Array1OfPnt& P3,
const TColgp_Array1OfPnt& P4,
const TColStd_Array1OfReal& W1,
const TColStd_Array1OfReal& W2,
const TColStd_Array1OfReal& W3,
const TColStd_Array1OfReal& W4)
{
Standard_DomainError_Raise_if
( W1.Length() != W3.Length() || W2.Length() != W4.Length()," ");
Standard_DomainError_Raise_if
( W1.Length() != P1.Length() ||
W2.Length() != P2.Length() ||
W3.Length() != P3.Length() ||
W4.Length() != P4.Length() , " ");
Init(P1,P2,P3,P4);
IsRational = Standard_True;
Standard_Integer NPolU = W1.Length();
Standard_Integer NPolV = W2.Length();
Standard_Real NU = NPolU - 1;
Standard_Real NV = NPolV - 1;
myWeights = new TColStd_HArray2OfReal( 1, NPolU, 1, NPolV);
// The boundaries are not modified
Standard_Integer i,j;
for ( i=1; i<=NPolU; i++) {
myWeights->SetValue( i, 1 , W1(i));
myWeights->SetValue( i, NPolV, W3(i));
}
Standard_Real PU,PU1,PV,PV1;
for ( j=2; j<=NPolV-1; j++) {
PV = (j-1)/NV;
PV1 = 1 - PV;
PV /= 2.;
PV1 /= 2.;
myWeights->SetValue( 1 , j, W4(j));
myWeights->SetValue( NPolU, j, W2(j));
for ( i=2; i<=NPolU-1; i++) {
PU = (i-1)/NU;
PU1 = 1 - PU;
PU /= 2.;
PU1 /= 2.;
Standard_Real W = PV1 * W1(i) + PV * W3(i) +
PU * W2(j) + PU1 * W4(j) ;
myWeights->SetValue(i,j,W);
}
}
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void GeomFill_Curved::Init(const TColgp_Array1OfPnt& , // P1,
const TColgp_Array1OfPnt& , // P2,
const TColgp_Array1OfPnt& )// P3)
{
Standard_NotImplemented::Raise(" ");
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void GeomFill_Curved::Init(const TColgp_Array1OfPnt& , // P1,
const TColgp_Array1OfPnt& , // P2,
const TColgp_Array1OfPnt& , // P3,
const TColStd_Array1OfReal& , // W1,
const TColStd_Array1OfReal& , // W2,
const TColStd_Array1OfReal& ) // W3)
{
Standard_NotImplemented::Raise(" ");
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void GeomFill_Curved::Init(const TColgp_Array1OfPnt& P1,
const TColgp_Array1OfPnt& P2)
{
Standard_Integer NPolU = P1.Length();
Standard_Integer NPolV = P2.Length();
IsRational = Standard_False;
#ifdef DEB
Standard_Real NU = NPolU - 1;
Standard_Real NV = NPolV - 1;
#endif
myPoles = new TColgp_HArray2OfPnt( 1, NPolU, 1, NPolV);
Standard_Integer i,j;
for ( j=1; j<=NPolV; j++) {
gp_Vec Tra(P2(1),P2(j));
for ( i=1; i<=NPolU; i++) {
myPoles->SetValue( i, j, P1(i).Translated(Tra));
}
}
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void GeomFill_Curved::Init(const TColgp_Array1OfPnt& P1,
const TColgp_Array1OfPnt& P2,
const TColStd_Array1OfReal& W1,
const TColStd_Array1OfReal& W2)
{
Init(P1,P2);
IsRational = Standard_True;
//Initialisation des poids.
Standard_Integer NPolU = W1.Length();
Standard_Integer NPolV = W2.Length();
myWeights = new TColStd_HArray2OfReal( 1, NPolU, 1, NPolV);
for (Standard_Integer j=1; j<=NPolV; j++) {
Standard_Real Factor = W2(j)/W1(1);
for (Standard_Integer i=1; i<=NPolU; i++) {
myWeights->SetValue(i,j,W1(i)*Factor);
}
}
}