1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-21 10:13:43 +03:00
occt/src/GeomFill/GeomFill_SweepSectionGenerator.cxx
kgv c22b52d60e 0028966: Coding Rules - remove Adaptor2d_HCurve2d, Adaptor3d_HCurve and Adaptor3d_HSurface classes
Adaptor2d_Curve2d, Adaptor3d_Curve and Adaptor3d_Surface now inherit Standard_Transient.
Interfaces Adaptor2d_HCurve2d, Adaptor3d_HCurve, Adaptor3d_HSurface and their subclasses
are now aliases to Adaptor2d_Curve2d, Adaptor3d_Curve and Adaptor3d_Surface.
Removed numerous unsafe reinterpret casts.

Generic classes Adaptor3d_GenHCurve, Adaptor3d_GenHSurface, Adaptor2d_GenHCurve2d have been removed.
Several redundant .lxx files have been merged into .hxx.

Removed obsolete adaptor classes with H suffix.
2020-12-11 19:12:48 +03:00

709 lines
19 KiB
C++

// Created on: 1994-02-28
// Created by: Bruno DUMORTIER
// Copyright (c) 1994-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 <Adaptor3d_Curve.hxx>
#include <ElCLib.hxx>
#include <GCPnts_QuasiUniformDeflection.hxx>
#include <Geom_BSplineCurve.hxx>
#include <Geom_Circle.hxx>
#include <Geom_Curve.hxx>
#include <Geom_TrimmedCurve.hxx>
#include <GeomAdaptor.hxx>
#include <GeomAdaptor_Curve.hxx>
#include <GeomConvert.hxx>
#include <GeomFill_Profiler.hxx>
#include <GeomFill_SweepSectionGenerator.hxx>
#include <gp_Ax2.hxx>
#include <gp_Ax3.hxx>
#include <gp_Dir.hxx>
#include <gp_Pnt.hxx>
#include <gp_Trsf.hxx>
#include <gp_Vec.hxx>
#include <Precision.hxx>
#include <Standard_RangeError.hxx>
#include <TColStd_Array1OfReal.hxx>
#include <stdio.h>
#ifdef DRAW
#include <DrawTrSurf.hxx>
#include <Geom_BSplineCurve.hxx>
static Standard_Boolean Affich = Standard_False;
static Standard_Integer NbSECTIONS = 0;
#endif
//=======================================================================
//function : GeomFill_SweepSectionGenerator
//purpose :
//=======================================================================
GeomFill_SweepSectionGenerator::GeomFill_SweepSectionGenerator()
: myRadius(0.0),
myIsDone(Standard_False),
myNbSections(0),
myType(-1),
myPolynomial(Standard_False)
{
}
//=======================================================================
//function : GeomFill_SweepSectionGenerator
//purpose :
//=======================================================================
GeomFill_SweepSectionGenerator::GeomFill_SweepSectionGenerator
(const Handle(Geom_Curve)& Path,
const Standard_Real Radius)
{
Init(Path,Radius);
}
//=======================================================================
//function : GeomFill_SweepSectionGenerator
//purpose :
//=======================================================================
GeomFill_SweepSectionGenerator::GeomFill_SweepSectionGenerator
(const Handle(Geom_Curve)& Path,
const Handle(Geom_Curve)& FirstSect)
{
Init(Path,FirstSect);
}
//=======================================================================
//function : GeomFill_SweepSectionGenerator
//purpose :
//=======================================================================
GeomFill_SweepSectionGenerator::GeomFill_SweepSectionGenerator
(const Handle(Geom_Curve)& Path,
const Handle(Geom_Curve)& FirstSect,
const Handle(Geom_Curve)& LastSect )
{
Init(Path,FirstSect,LastSect);
}
//=======================================================================
//function : GeomFill_SweepSectionGenerator
//purpose :
//=======================================================================
GeomFill_SweepSectionGenerator::GeomFill_SweepSectionGenerator
(const Handle(Adaptor3d_Curve)& Path,
const Handle(Adaptor3d_Curve)& Curve1,
const Handle(Adaptor3d_Curve)& Curve2,
const Standard_Real Radius)
{
Init(Path,Curve1,Curve2,Radius);
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void GeomFill_SweepSectionGenerator::Init(const Handle(Geom_Curve)& Path,
const Standard_Real Radius)
{
myIsDone = Standard_False;
myRadius = Radius;
GeomAdaptor_Curve ThePath(Path);
if (ThePath.GetType() == GeomAbs_Circle) {
myCircPathAxis = ThePath.Circle().Axis();
myType = 4;
}
else myType = 1;
if ( Path->IsKind(STANDARD_TYPE(Geom_BSplineCurve))) {
myPath = Handle(Geom_BSplineCurve)::DownCast(Path->Copy());
}
else {
myPath = GeomConvert::CurveToBSplineCurve(Path);
}
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void GeomFill_SweepSectionGenerator::Init
(const Handle(Geom_Curve)& Path,
const Handle(Geom_Curve)& FirstSect)
{
myIsDone = Standard_False;
myRadius = 0;
GeomAdaptor_Curve ThePath(Path);
if (ThePath.GetType() == GeomAbs_Circle) {
myCircPathAxis = ThePath.Circle().Axis();
myType = 5;
}
else myType = 2;
if ( Path->IsKind(STANDARD_TYPE(Geom_BSplineCurve))) {
myPath = Handle(Geom_BSplineCurve)::DownCast(Path->Copy());
}
else {
myPath = GeomConvert::CurveToBSplineCurve(Path);
}
if ( FirstSect->IsKind(STANDARD_TYPE(Geom_BSplineCurve))) {
myFirstSect = Handle(Geom_BSplineCurve)::DownCast(FirstSect->Copy());
}
else {
// JAG
myFirstSect = GeomConvert::CurveToBSplineCurve(FirstSect,
Convert_QuasiAngular);
}
if ( myFirstSect->IsPeriodic()) myFirstSect->SetNotPeriodic();
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void GeomFill_SweepSectionGenerator::Init
(const Handle(Geom_Curve)& Path,
const Handle(Geom_Curve)& FirstSect,
const Handle(Geom_Curve)& LastSect )
{
myIsDone = Standard_False;
myRadius = 0;
GeomAdaptor_Curve ThePath(Path);
if (ThePath.GetType() == GeomAbs_Circle) {
myCircPathAxis = ThePath.Circle().Axis();
myType = 6;
}
else myType = 3;
if ( Path->IsKind(STANDARD_TYPE(Geom_BSplineCurve))) {
myPath = Handle(Geom_BSplineCurve)::DownCast(Path->Copy());
}
else {
myPath = GeomConvert::CurveToBSplineCurve(Path);
}
// JAG
if ( FirstSect->IsKind(STANDARD_TYPE(Geom_BSplineCurve))) {
myFirstSect = Handle(Geom_BSplineCurve)::DownCast(FirstSect->Copy());
}
else {
myFirstSect = GeomConvert::CurveToBSplineCurve(FirstSect,
Convert_QuasiAngular);
}
if ( LastSect->IsKind(STANDARD_TYPE(Geom_BSplineCurve))) {
myLastSect = Handle(Geom_BSplineCurve)::DownCast(LastSect->Copy());
}
else {
myLastSect = GeomConvert::CurveToBSplineCurve(LastSect,
Convert_QuasiAngular);
}
if ( myFirstSect->IsPeriodic()) myFirstSect->SetNotPeriodic();
if ( myLastSect->IsPeriodic()) myLastSect->SetNotPeriodic();
// JAG
GeomFill_Profiler Profil;
Profil.AddCurve(myFirstSect);
Profil.AddCurve(myLastSect);
Profil.Perform(Precision::Confusion());
myFirstSect = Handle(Geom_BSplineCurve)::DownCast(Profil.Curve(1));
myLastSect = Handle(Geom_BSplineCurve)::DownCast(Profil.Curve(2));
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void GeomFill_SweepSectionGenerator::Init
(const Handle(Adaptor3d_Curve)& Path,
const Handle(Adaptor3d_Curve)& Curve1,
const Handle(Adaptor3d_Curve)& Curve2,
const Standard_Real Radius)
{
myIsDone = Standard_False;
myRadius = Radius;
myType = 0;
Handle(Geom_Curve) CC = GeomAdaptor::MakeCurve(*Path);
myPath = GeomConvert::CurveToBSplineCurve(CC);
myAdpPath = Path;
myAdpFirstSect = Curve1;
myAdpLastSect = Curve2;
}
//=======================================================================
//function : Perform
//purpose :
//=======================================================================
void GeomFill_SweepSectionGenerator::Perform(const Standard_Boolean Polynomial)
{
myPolynomial = Polynomial;
// eval myNbSections.
Standard_Integer NSpans = myPath->NbKnots()-1;
myNbSections = 21 * NSpans;
Standard_Real U;
Standard_Real U1 = myPath->FirstParameter();
Standard_Real U2 = myPath->LastParameter();
GCPnts_QuasiUniformDeflection Samp;
// Calcul de la longueur approximative de la courbe
GeomAdaptor_Curve AdpPath(myPath);
gp_Pnt P1 = AdpPath.Value(U1);
gp_Pnt P2 = AdpPath.Value((U1+U2)/2.);
gp_Pnt P3 = AdpPath.Value(U2);
Standard_Real Length =
P1.Distance(P2) + P2.Distance(P3);
Standard_Real Fleche = 1.e-5 * Length;
Samp.Initialize(AdpPath,Fleche);
if ( Samp.IsDone() && (Samp.NbPoints() > myNbSections) ) {
myNbSections = Samp.NbPoints();
}
// the transformations are calculate on differents points of <myPath>
// corresponding to the path parameter uniformly reparted.
Standard_Real DeltaU = (U2-U1)/(Standard_Real)(myNbSections-1);
TColStd_Array1OfReal Parameters(1,myNbSections);
// Parameters(1) = U1;
// for (Standard_Integer i = 2; i < myNbSections; i++) {
// Parameters(i) = U1 + (i-1) * DeltaU;
// }
// Parameters(myNbSections) = U2;
Parameters(1) = 0.;
for (Standard_Integer i = 2; i < myNbSections; i++) {
Parameters(i) = (i-1) * DeltaU;
}
Parameters(myNbSections) = U2 - U1;
gp_Vec D1Ref, D1;
gp_Pnt PRef , P;
gp_Trsf TR, cumulTR, Trans;
myPath->D1( U1, PRef, D1Ref);
if ( ( myType == 1) || (myType == 4) ) {
// We create a circle with radius <myRadius>. This axis is create with
// main direction <DRef> (first derivate vector of <myPath> on the first
// point <PRef> ). This circle is, after transform to BSpline curve,
// put in <myFirstSect>.
gp_Ax2 CircleAxis (PRef,D1Ref);
/*
Handle(Geom_Circle) Circ = new Geom_Circle( CircleAxis, myRadius);
myFirstSect = GeomConvert::CurveToBSplineCurve(Circ);
// le cercle est segmente car AppBlend_AppSurf ne gere
// pas les courbes periodiques.
myFirstSect->Segment(0., 2.*M_PI);
*/
Handle(Geom_TrimmedCurve) Circ =
new Geom_TrimmedCurve(new Geom_Circle( CircleAxis, myRadius),
0., 2.*M_PI);
myFirstSect = GeomConvert::CurveToBSplineCurve(Circ,Convert_QuasiAngular);
}
if (myType <= 3 && myType >=1 ) {
for (Standard_Integer i = 2; i <= myNbSections; i++) {
U = Parameters(i) + U1;
if (i == myNbSections) U = U2;
myPath->D1( U, P, D1);
// Eval the translation between the (i-1) section and the i-th.
Trans.SetTranslation(PRef, P);
gp_Trsf Rot;
if (! D1Ref.IsParallel(D1, Precision::Angular())) {
// Eval the Rotation between (i-1) section and the i-th.
Rot.SetRotation(gp_Ax1(P, gp_Dir(D1Ref^D1)),
D1Ref.AngleWithRef(D1, D1Ref^D1));
}
else
if (D1Ref.IsOpposite(D1, Precision::Angular()))
#ifdef OCCT_DEBUG
std::cout <<"Que fais-je ???? " << std::endl;
#endif
// TR is the transformation between (i-1) section and the i-th.
TR = Rot * Trans;
// cumulTR is the transformation between <myFirstSec> and
// the i-th section.
cumulTR = TR * cumulTR;
myTrsfs.Append(cumulTR);
PRef = P;
D1Ref = D1;
}
}
else if ( myType != 0) {
for (Standard_Integer i = 2; i<= myNbSections; i++) {
cumulTR.SetRotation(myCircPathAxis, Parameters(i));
myTrsfs.Append(cumulTR);
}
}
myIsDone = Standard_True;
}
//=======================================================================
//function : GetShape
//purpose :
//=======================================================================
void GeomFill_SweepSectionGenerator::GetShape
(Standard_Integer& NbPoles,
Standard_Integer& NbKnots,
Standard_Integer& Degree,
Standard_Integer& NbPoles2d) const
{
/*
if ( myType == 1) {
NbPoles = 7;
NbKnots = 4;
Degree = 2;
}
else {
*/
if ( myType != 0) {
NbPoles = myFirstSect->NbPoles();
NbKnots = myFirstSect->NbKnots();
Degree = myFirstSect->Degree();
}
else { // myType == 0
NbPoles = 7;
NbKnots = 2;
Degree = 6;
}
NbPoles2d = 0;
}
//=======================================================================
//function : Knots
//purpose :
//=======================================================================
void GeomFill_SweepSectionGenerator::Knots(TColStd_Array1OfReal& TKnots) const
{
/*
if (myType == 1) {
Standard_Real U = 2.*M_PI/3.;
for ( Standard_Integer i = 1; i <= 4; i++)
TKnots(i) = ( i-1) * U;
}
else {
*/
if (myType !=0) {
myFirstSect->Knots(TKnots);
}
else {
TKnots(1) = 0.;
TKnots(2) = 1.;
}
// }
}
//=======================================================================
//function : Mults
//purpose :
//=======================================================================
void GeomFill_SweepSectionGenerator::Mults(TColStd_Array1OfInteger& TMults)
const
{
/*
if ( myType == 1) {
TMults( 1) = TMults( 4) = 3;
TMults( 2) = TMults( 3) = 2;
}
else {
*/
if ( myType != 0) {
myFirstSect->Multiplicities(TMults);
}
else {
TMults( 1) = TMults( 2) = 7;
}
// }
}
//=======================================================================
//function : Section
//purpose :
//=======================================================================
Standard_Boolean GeomFill_SweepSectionGenerator::Section
(const Standard_Integer P,
TColgp_Array1OfPnt& Poles,
TColgp_Array1OfVec& DPoles,
TColgp_Array1OfPnt2d& Poles2d,
TColgp_Array1OfVec2d& , //DPoles2d,
TColStd_Array1OfReal& Weigths,
TColStd_Array1OfReal& DWeigths
) const
{
Section( P, Poles, Poles2d, Weigths);
// pour les tuyaux sur aretes pour l'instant on ne calcule pas les derivees
if ( myType == 0 ) return Standard_False; // a voir pour mieux.
// calcul des derivees sur la surface
// on calcule les derivees en approximant le path au voisinage du point
// P(u) par le cercle osculateur au path .
// calcul du cercle osculateur.
Standard_Real U;
if ( P == 1) {
U = myPath->FirstParameter();
}
else if ( P == myNbSections ) {
U = myPath->LastParameter();
}
else
return Standard_False;
gp_Vec D1, D2;
gp_Pnt Pt;
myPath->D2(U,Pt,D1,D2);
Standard_Real l = D1.Magnitude();
if ( l < Epsilon(1.))
return Standard_False;
gp_Dir T = D1;
Standard_Real m = D2.Dot(T);
gp_Vec D = D2 - m * T;
Standard_Real c = D.Magnitude() / (l*l);
if ( c < Epsilon(1.)) {
// null curvature : equivalent to a translation of the section
for (Standard_Integer i = 1; i <= myFirstSect->NbPoles(); i++) {
DPoles(i) = D1;
}
}
else {
gp_Dir N = D;
gp_Pnt Q = Pt.Translated( (1./c) * gp_Vec(N));
Standard_Real x, y;
gp_Vec V;
for ( Standard_Integer i = 1; i <= myFirstSect->NbPoles(); i++) {
V = gp_Vec(Q, Poles(i));
x = V * gp_Vec(T);
y = V * gp_Vec(N);
DPoles(i) = x * gp_Vec(N) - y * gp_Vec(T);
if ( DPoles(i).Magnitude() > Epsilon(1.)) {
DPoles(i).Normalize();
DPoles(i) *= Sqrt( x*x + y*y);
}
}
}
for ( Standard_Integer i = 1; i <= myFirstSect->NbPoles(); i++) {
DWeigths(i) = 0.;
}
return Standard_True;
}
//=======================================================================
//function : Section
//purpose :
//=======================================================================
void GeomFill_SweepSectionGenerator::Section
(const Standard_Integer P,
TColgp_Array1OfPnt& Poles,
TColgp_Array1OfPnt2d& , //Poles2d,
TColStd_Array1OfReal& Weigths) const
{
if (myType != 0) {
myFirstSect->Poles(Poles);
myFirstSect->Weights(Weigths);
gp_Trsf cumulTR;
if (P > 1) {
cumulTR = myTrsfs(P - 1);
// <cumulTR> transform <myFirstSect> to the P ieme Section. In fact
// each points of the array <poles> will be transformed.
if ( (myType == 3 ) || (myType == 6) ){
for (Standard_Integer i = 1; i <= myFirstSect->NbPoles(); i++) {
Poles(i).SetXYZ( (myNbSections - P) * myFirstSect->Pole(i).XYZ() +
(P - 1) * myLastSect->Pole(i).XYZ() );
Poles(i).SetXYZ( Poles(i).XYZ() / (myNbSections - 1));
Weigths(i) = (myNbSections - P) * myFirstSect->Weight(i) +
(P - 1) * myLastSect->Weight(i);
Weigths(i) /= myNbSections - 1;
}
}
for (Standard_Integer i = 1; i<=Poles.Length(); i++)
Poles(i).Transform(cumulTR);
}
#ifdef DRAW
if ( Affich) {
char name[256];
sprintf(name,"SECTION_%d",++NbSECTIONS);
DrawTrSurf::Set(name,myFirstSect->Transformed(cumulTR));
}
#endif
}
else {
Standard_Real Coef = (P -1. ) / ( myNbSections - 1.);
Standard_Real U =
( 1- Coef) * myAdpPath->FirstParameter() +
Coef * myAdpPath->LastParameter();
gp_Pnt PPath = myAdpPath->Value(U);
Standard_Real Alpha = U - myAdpPath->FirstParameter();
Alpha /= myAdpPath->LastParameter() - myAdpPath->FirstParameter();
Standard_Real U1 =
( 1- Alpha) * myAdpFirstSect->FirstParameter() +
Alpha * myAdpFirstSect->LastParameter();
gp_Pnt P1 = myAdpFirstSect->Value(U1);
Standard_Real U2 =
( 1- Alpha) * myAdpLastSect->FirstParameter() +
Alpha * myAdpLastSect->LastParameter();
gp_Pnt P2 = myAdpLastSect->Value(U2);
gp_Ax2 Axis;
Standard_Real Angle;
if ( P1.Distance(P2) < Precision::Confusion()) {
Angle = 0.;
}
else {
Axis = gp_Ax2(PPath,
gp_Vec(PPath,P1) ^ gp_Vec(PPath,P2),
gp_Vec(PPath,P1));
Angle = ElCLib::CircleParameter(Axis,P2);
}
#ifdef OCCT_DEBUG
/*
if (Standard_False) {
gp_Vec dummyD1 = myAdpPath->DN(U,1);
gp_Vec dummyTg = Axis.Direction();
Standard_Real Cos = dummyD1.Dot(dummyTg);
if ( Cos > 0.) std::cout << "+" ;
else std::cout << "-" ;
}
*/
#endif
if ( Angle < Precision::Angular()) {
for ( Standard_Integer i = 1; i <= Poles.Upper(); i++) {
Poles(i) = P1;
Weigths(i) = 1;
}
}
else {
Handle(Geom_Circle) Circ =
new Geom_Circle( Axis, myRadius);
Handle(Geom_TrimmedCurve) CT =
new Geom_TrimmedCurve(Circ, 0., Angle);
Handle(Geom_BSplineCurve) BS;
if ( myPolynomial)
BS = GeomConvert::CurveToBSplineCurve( CT, Convert_Polynomial);
else
BS = GeomConvert::CurveToBSplineCurve( CT, Convert_QuasiAngular);
#ifdef DRAW
if ( Affich) {
char name[256];
sprintf(name,"SECTION_%d",++NbSECTIONS);
DrawTrSurf::Set(name,BS);
}
#endif
BS->Poles(Poles);
BS->Weights(Weigths);
}
}
}
//=======================================================================
//function : Transformation
//purpose :
//=======================================================================
const gp_Trsf& GeomFill_SweepSectionGenerator::Transformation
(const Standard_Integer Index) const
{
if (Index > myTrsfs.Length())
throw Standard_RangeError("GeomFill_SweepSectionGenerator::Transformation");
return myTrsfs(Index);
}
//=======================================================================
//function : Parameter
//purpose :
//=======================================================================
Standard_Real GeomFill_SweepSectionGenerator::Parameter
(const Standard_Integer P) const
{
if (P == 1) {
return myPath->FirstParameter();
}
else if (P == myNbSections) {
return myPath->LastParameter();
}
else {
Standard_Real U1 = myPath->FirstParameter();
Standard_Real U2 = myPath->LastParameter();
Standard_Real prm = ((myNbSections-P)*U1 + (P-1)*U2)/
(Standard_Real)(myNbSections-1);
return prm;
}
}