mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-06-15 11:44:07 +03:00
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast Wrong license statements corrected in several files. Copyright and license statements added in XSD and GLSL files. Copyright year updated in some files. Obsolete documentation files removed from DrawResources.
159 lines
4.4 KiB
Plaintext
159 lines
4.4 KiB
Plaintext
// Created on: 1993-11-18
|
|
// Created by: Isabelle GRIGNON
|
|
// 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.
|
|
|
|
//=======================================================================
|
|
//function : SetInterference
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline void ChFiDS_FaceInterference:: SetInterference
|
|
(const Standard_Integer LineIndex,
|
|
const TopAbs_Orientation Trans,
|
|
const Handle(Geom2d_Curve)& PCurv1,
|
|
const Handle(Geom2d_Curve)& PCurv2)
|
|
{
|
|
lineindex = LineIndex;
|
|
LineTransition = Trans;
|
|
pCurveOnFace = PCurv1;
|
|
pCurveOnSurf = PCurv2;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : SetLineIndex
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline void ChFiDS_FaceInterference::SetLineIndex
|
|
(const Standard_Integer I)
|
|
{
|
|
lineindex = I;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetFirstParameter
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline void ChFiDS_FaceInterference::SetFirstParameter(
|
|
const Standard_Real U1)
|
|
{
|
|
firstParam = U1;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : SetLastParameter
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline void ChFiDS_FaceInterference::SetLastParameter(
|
|
const Standard_Real U1)
|
|
{
|
|
lastParam = U1;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : LineIndex
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline Standard_Integer ChFiDS_FaceInterference::LineIndex()const
|
|
{
|
|
return lineindex;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Transition
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline TopAbs_Orientation ChFiDS_FaceInterference::Transition()const
|
|
{
|
|
return LineTransition;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : PCurveOnFace
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline const Handle(Geom2d_Curve)&
|
|
ChFiDS_FaceInterference::PCurveOnFace()const
|
|
{
|
|
return pCurveOnFace;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : PCurveOnSurf
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline const Handle(Geom2d_Curve)& ChFiDS_FaceInterference::PCurveOnSurf()const
|
|
{
|
|
return pCurveOnSurf;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : ChangePCurveOnFace
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline Handle(Geom2d_Curve)&
|
|
ChFiDS_FaceInterference::ChangePCurveOnFace()
|
|
{
|
|
return pCurveOnFace;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : ChangePCurveOnSurf
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline Handle(Geom2d_Curve)&
|
|
ChFiDS_FaceInterference::ChangePCurveOnSurf()
|
|
{
|
|
return pCurveOnSurf;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : FirstParameter
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline Standard_Real ChFiDS_FaceInterference:: FirstParameter()const
|
|
{
|
|
return firstParam;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : LastParameter
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
inline Standard_Real ChFiDS_FaceInterference:: LastParameter()const
|
|
{
|
|
return lastParam;
|
|
}
|
|
|
|
|