mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-26 11:05:31 +03:00
1) Treatment of case when projection algorithm to BSpline surface return null 2d curve. 2) Changed approximation of next step in default projection algorithm. 3) Special handling of surface of revolution added. "Period jump" handling evaded in case when curve not computed. Test cases for issue CR25892 Small correction of test cases fot CR25892
323 lines
8.9 KiB
C++
323 lines
8.9 KiB
C++
// Created on: 1993-08-24
|
|
// Created by: Bruno DUMORTIER
|
|
// Copyright (c) 1993-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.
|
|
|
|
// Modified by skv - Wed Aug 11 15:45:58 2004 OCC6272
|
|
|
|
|
|
#include <ProjLib_Projector.ixx>
|
|
|
|
#include <ElCLib.hxx>
|
|
|
|
|
|
//=======================================================================
|
|
//function : ProjLib_Projector
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
ProjLib_Projector::ProjLib_Projector()
|
|
{
|
|
isDone = Standard_False;
|
|
myType = GeomAbs_BSplineCurve;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : ~ProjLib_Projector
|
|
//purpose : Destructor
|
|
//=======================================================================
|
|
|
|
ProjLib_Projector::~ProjLib_Projector()
|
|
{
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : IsDone
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Boolean ProjLib_Projector::IsDone() const
|
|
{
|
|
return isDone;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Done
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void ProjLib_Projector::Done()
|
|
{
|
|
isDone = Standard_True;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : GetType
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
GeomAbs_CurveType ProjLib_Projector::GetType() const
|
|
{
|
|
return myType;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : SetType
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void ProjLib_Projector::SetType( const GeomAbs_CurveType Type)
|
|
{
|
|
myType = Type;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : IsPeriodic
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Boolean ProjLib_Projector::IsPeriodic() const
|
|
{
|
|
return myIsPeriodic;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : SetPeriodic
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void ProjLib_Projector::SetPeriodic()
|
|
{
|
|
myIsPeriodic = Standard_True;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Line
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const gp_Lin2d& ProjLib_Projector::Line()const
|
|
{
|
|
if (myType != GeomAbs_Line)
|
|
Standard_NoSuchObject::Raise("ProjLib_Projector::Line");
|
|
return myLin;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Circle
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const gp_Circ2d& ProjLib_Projector::Circle()const
|
|
{
|
|
if (myType != GeomAbs_Circle)
|
|
Standard_NoSuchObject::Raise("ProjLib_Projector::Circle");
|
|
return myCirc;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Ellipse
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const gp_Elips2d& ProjLib_Projector::Ellipse()const
|
|
{
|
|
if (myType != GeomAbs_Ellipse)
|
|
Standard_NoSuchObject::Raise("ProjLib_Projector::Ellipse");
|
|
return myElips;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Hyperbola
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const gp_Hypr2d& ProjLib_Projector::Hyperbola()const
|
|
{
|
|
if (myType != GeomAbs_Hyperbola)
|
|
Standard_NoSuchObject::Raise("ProjLib_Projector::Hyperbola");
|
|
return myHypr;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Parabola
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const gp_Parab2d& ProjLib_Projector::Parabola()const
|
|
{
|
|
if (myType != GeomAbs_Parabola)
|
|
Standard_NoSuchObject::Raise("ProjLib_Projector::Parabola");
|
|
return myParab;
|
|
}
|
|
|
|
|
|
|
|
|
|
//=======================================================================
|
|
//function : Project
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void ProjLib_Projector::Project(const gp_Lin& )
|
|
{
|
|
myType = GeomAbs_OtherCurve;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Project
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void ProjLib_Projector::Project(const gp_Circ& )
|
|
{
|
|
myType = GeomAbs_OtherCurve;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Project
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void ProjLib_Projector::Project(const gp_Elips& )
|
|
{
|
|
myType = GeomAbs_OtherCurve;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Project
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void ProjLib_Projector::Project(const gp_Parab& )
|
|
{
|
|
myType = GeomAbs_OtherCurve;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Project
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void ProjLib_Projector::Project(const gp_Hypr& )
|
|
{
|
|
myType = GeomAbs_OtherCurve;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : UFrame
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void ProjLib_Projector::UFrame(const Standard_Real CFirst,
|
|
// const Standard_Real CLast,
|
|
const Standard_Real ,
|
|
const Standard_Real UFirst,
|
|
const Standard_Real Period)
|
|
{
|
|
if (myType == GeomAbs_Line) {
|
|
// Modified by skv - Wed Aug 11 15:45:58 2004 OCC6272 Begin
|
|
// if ( myLin.Direction().Y() == 0.) {
|
|
// Modified by skv - Wed Aug 11 15:45:58 2004 OCC6272 End
|
|
// gp_Pnt2d PFirst, PLast;
|
|
gp_Pnt2d PFirst;
|
|
PFirst = ElCLib::Value(CFirst,myLin);
|
|
//PLast = ElCLib::Value(CLast ,myLin);
|
|
//Standard_Real U = Min( PFirst.X(), PLast.X());
|
|
Standard_Real U = PFirst.X();
|
|
Standard_Real NewU = ElCLib::InPeriod(U,UFirst, UFirst + Period);
|
|
myLin.Translate(gp_Vec2d(NewU-U,0.));
|
|
}
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : VFrame
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void ProjLib_Projector::VFrame(const Standard_Real CFirst,
|
|
// const Standard_Real CLast,
|
|
const Standard_Real ,
|
|
const Standard_Real VFirst,
|
|
const Standard_Real Period)
|
|
{
|
|
if (myType == GeomAbs_Line) {
|
|
// Modified by skv - Wed Aug 11 15:45:58 2004 OCC6272 Begin
|
|
// if ( myLin.Direction().X() == 0.) {
|
|
// Modified by skv - Wed Aug 11 15:45:58 2004 OCC6272 End
|
|
// gp_Pnt2d PFirst, PLast;
|
|
gp_Pnt2d PFirst;
|
|
PFirst = ElCLib::Value(CFirst,myLin);
|
|
//PLast = ElCLib::Value(CLast ,myLin);
|
|
//Standard_Real V = Min( PFirst.Y(), PLast.Y());
|
|
Standard_Real V = PFirst.Y();
|
|
Standard_Real NewV = ElCLib::InPeriod(V,VFirst, VFirst + Period);
|
|
myLin.Translate(gp_Vec2d(0.,NewV-V));
|
|
}
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetBezier
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void ProjLib_Projector::SetBezier(const Handle(Geom2d_BezierCurve)& C)
|
|
{
|
|
myBezier = C ;
|
|
}
|
|
//=======================================================================
|
|
//function : Bezier
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(Geom2d_BezierCurve)ProjLib_Projector::Bezier() const
|
|
{
|
|
return myBezier ;
|
|
}
|
|
//=======================================================================
|
|
//function : SetBSpline
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void ProjLib_Projector::SetBSpline(const Handle(Geom2d_BSplineCurve)& C)
|
|
{
|
|
myBSpline = C ;
|
|
}
|
|
//=======================================================================
|
|
//function : BSpline
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(Geom2d_BSplineCurve) ProjLib_Projector::BSpline() const
|
|
{
|
|
return myBSpline ;
|
|
}
|