1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/src/ProjLib/ProjLib_Projector.cxx

330 lines
9.2 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 <ElCLib.hxx>
#include <Geom2d_BezierCurve.hxx>
#include <Geom2d_BSplineCurve.hxx>
#include <gp_Circ.hxx>
#include <gp_Elips.hxx>
#include <gp_Hypr.hxx>
#include <gp_Lin.hxx>
#include <gp_Lin2d.hxx>
#include <gp_Parab.hxx>
#include <ProjLib_Projector.hxx>
#include <Standard_NoSuchObject.hxx>
#include <Standard_NotImplemented.hxx>
//=======================================================================
//function : ProjLib_Projector
//purpose :
//=======================================================================
ProjLib_Projector::ProjLib_Projector()
: myIsPeriodic(Standard_False)
{
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)
throw Standard_NoSuchObject("ProjLib_Projector::Line");
return myLin;
}
//=======================================================================
//function : Circle
//purpose :
//=======================================================================
const gp_Circ2d& ProjLib_Projector::Circle()const
{
if (myType != GeomAbs_Circle)
throw Standard_NoSuchObject("ProjLib_Projector::Circle");
return myCirc;
}
//=======================================================================
//function : Ellipse
//purpose :
//=======================================================================
const gp_Elips2d& ProjLib_Projector::Ellipse()const
{
if (myType != GeomAbs_Ellipse)
throw Standard_NoSuchObject("ProjLib_Projector::Ellipse");
return myElips;
}
//=======================================================================
//function : Hyperbola
//purpose :
//=======================================================================
const gp_Hypr2d& ProjLib_Projector::Hyperbola()const
{
if (myType != GeomAbs_Hyperbola)
throw Standard_NoSuchObject("ProjLib_Projector::Hyperbola");
return myHypr;
}
//=======================================================================
//function : Parabola
//purpose :
//=======================================================================
const gp_Parab2d& ProjLib_Projector::Parabola()const
{
if (myType != GeomAbs_Parabola)
throw Standard_NoSuchObject("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 ;
}