mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-04 13:13:25 +03:00
The copying permission statements at the beginning of source files updated to refer to LGPL. Copyright dates extended till 2014 in advance.
90 lines
2.2 KiB
Plaintext
90 lines
2.2 KiB
Plaintext
// Copyright (c) 1995-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 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 <StdFail_UndefinedDerivative.hxx>
|
|
#include <TColgp_HSequenceOfXY.hxx>
|
|
|
|
inline void IntSurf_PathPoint::AddUV(const Standard_Real U,
|
|
const Standard_Real V) {
|
|
sequv->Append(gp_XY(U,V));
|
|
}
|
|
|
|
inline void IntSurf_PathPoint::SetDirections (const gp_Vec& V,
|
|
const gp_Dir2d& D) {
|
|
|
|
istgt = Standard_False;
|
|
vectg = V;
|
|
dirtg = D;
|
|
}
|
|
|
|
inline void IntSurf_PathPoint::SetTangency (const Standard_Boolean Tang) {
|
|
|
|
istgt = Tang;
|
|
}
|
|
|
|
inline void IntSurf_PathPoint::SetPassing (const Standard_Boolean Pass) {
|
|
|
|
ispass = Pass;
|
|
}
|
|
|
|
inline const gp_Pnt& IntSurf_PathPoint::Value () const
|
|
{
|
|
return pt;
|
|
}
|
|
|
|
inline void IntSurf_PathPoint::Value2d (Standard_Real& U,
|
|
Standard_Real& V) const
|
|
{
|
|
gp_XY uv(sequv->Sequence().First());
|
|
U = uv.X();
|
|
V = uv.Y();
|
|
}
|
|
|
|
inline Standard_Boolean IntSurf_PathPoint::IsPassingPnt () const {
|
|
|
|
return ispass;
|
|
}
|
|
|
|
inline Standard_Boolean IntSurf_PathPoint::IsTangent () const {
|
|
|
|
return istgt;
|
|
}
|
|
|
|
inline const gp_Vec& IntSurf_PathPoint::Direction3d () const {
|
|
|
|
if (istgt) {StdFail_UndefinedDerivative::Raise();}
|
|
return vectg;
|
|
}
|
|
|
|
inline const gp_Dir2d& IntSurf_PathPoint::Direction2d () const {
|
|
|
|
if (istgt) {StdFail_UndefinedDerivative::Raise();}
|
|
return dirtg;
|
|
}
|
|
|
|
inline Standard_Integer IntSurf_PathPoint::Multiplicity () const {
|
|
|
|
return (sequv->Length()-1);
|
|
}
|
|
|
|
inline void IntSurf_PathPoint::Parameters (const Standard_Integer Index,
|
|
Standard_Real& U,
|
|
Standard_Real& V) const
|
|
{
|
|
gp_XY uv(sequv->Value(Index+1));
|
|
U = uv.X();
|
|
V = uv.Y();
|
|
}
|
|
|