1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/src/BRep/BRep_CurveOnClosedSurface.cxx
abv 42cf5bc1ca 0024002: Overall code and build procedure refactoring -- automatic
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl":
- WOK-generated header files from inc and sources from drv are moved to src
- CDL files removed
- All packages are converted to nocdlpack
2015-07-12 07:42:38 +03:00

182 lines
5.1 KiB
C++

// Created on: 1993-07-06
// Created by: Remi LEQUETTE
// 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.
#include <BRep_CurveOnClosedSurface.hxx>
#include <BRep_CurveRepresentation.hxx>
#include <Geom2d_Curve.hxx>
#include <Geom_Surface.hxx>
#include <gp_Pnt2d.hxx>
#include <Precision.hxx>
#include <Standard_Type.hxx>
#include <TopLoc_Location.hxx>
//=======================================================================
//function : BRep_CurveOnClosedSurface
//purpose :
//=======================================================================
BRep_CurveOnClosedSurface::BRep_CurveOnClosedSurface
(const Handle(Geom2d_Curve)& PC1,
const Handle(Geom2d_Curve)& PC2,
const Handle(Geom_Surface)& S,
const TopLoc_Location& L,
const GeomAbs_Shape C) :
BRep_CurveOnSurface(PC1,S,L),
myPCurve2(PC2),
myContinuity(C)
{
}
//=======================================================================
//function : IsCurveOnClosedSurface
//purpose :
//=======================================================================
Standard_Boolean BRep_CurveOnClosedSurface::IsCurveOnClosedSurface()const
{
return Standard_True;
}
//=======================================================================
//function : IsRegularity
//purpose :
//=======================================================================
Standard_Boolean BRep_CurveOnClosedSurface::IsRegularity()const
{
return Standard_True;
}
//=======================================================================
//function : IsRegularity
//purpose :
//=======================================================================
Standard_Boolean BRep_CurveOnClosedSurface::IsRegularity
(const Handle(Geom_Surface)& S1,
const Handle(Geom_Surface)& S2,
const TopLoc_Location& L1,
const TopLoc_Location& L2)const
{
return ((Surface() == S1) &&
(Surface() == S2) &&
(Location() == L1) &&
(Location() == L2));
}
//=======================================================================
//function : PCurve2
//purpose :
//=======================================================================
const Handle(Geom2d_Curve)& BRep_CurveOnClosedSurface::PCurve2()const
{
return myPCurve2;
}
//=======================================================================
//function : Continuity
//purpose :
//=======================================================================
const GeomAbs_Shape& BRep_CurveOnClosedSurface::Continuity()const
{
return myContinuity;
}
//=======================================================================
//function : Surface2
//purpose :
//=======================================================================
const Handle(Geom_Surface)& BRep_CurveOnClosedSurface::Surface2()const
{
return Surface();
}
//=======================================================================
//function : Location2
//purpose :
//=======================================================================
const TopLoc_Location& BRep_CurveOnClosedSurface::Location2()const
{
return Location();
}
//=======================================================================
//function : PCurve2
//purpose :
//=======================================================================
void BRep_CurveOnClosedSurface::PCurve2(const Handle(Geom2d_Curve)& C)
{
myPCurve2 = C;
}
//=======================================================================
//function : Continuity
//purpose :
//=======================================================================
void BRep_CurveOnClosedSurface::Continuity(const GeomAbs_Shape C)
{
myContinuity = C;
}
//=======================================================================
//function : Copy
//purpose :
//=======================================================================
Handle(BRep_CurveRepresentation) BRep_CurveOnClosedSurface::Copy() const
{
Handle(BRep_CurveOnClosedSurface) C =
new BRep_CurveOnClosedSurface(PCurve(),PCurve2(),
Surface(),Location(),myContinuity);
C->SetRange(First(), Last());
C->SetUVPoints(myUV1,myUV2);
C->SetUVPoints2(myUV21,myUV22);
return C;
}
//=======================================================================
//function : Update
//purpose :
//=======================================================================
void BRep_CurveOnClosedSurface::Update()
{
if (!Precision::IsNegativeInfinite(First()))
myPCurve2->D0(First(),myUV21);
if (!Precision::IsPositiveInfinite(Last()))
myPCurve2->D0(Last(),myUV22);
BRep_CurveOnSurface::Update();
}