mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-01 10:26:12 +03:00
65 lines
1.4 KiB
Plaintext
Executable File
65 lines
1.4 KiB
Plaintext
Executable File
// File: IntRes2d_IntersectionPoint.lxx
|
|
// Created: Thu Oct 1 10:59:18 1992
|
|
// Author: Laurent BUCHARD
|
|
// <lbr@sdsun2>
|
|
|
|
inline IntRes2d_IntersectionPoint::IntRes2d_IntersectionPoint
|
|
(const gp_Pnt2d& P,
|
|
const Standard_Real Uc1, const Standard_Real Uc2,
|
|
const IntRes2d_Transition& Trans1,
|
|
const IntRes2d_Transition& Trans2,
|
|
const Standard_Boolean ReversedFlag):
|
|
pt(P),p1(Uc1),p2(Uc2),trans1(Trans1),trans2(Trans2)
|
|
{
|
|
if(ReversedFlag) {
|
|
trans1=Trans2;
|
|
trans2=Trans1;
|
|
p1=Uc2;
|
|
p2=Uc1;
|
|
}
|
|
}
|
|
|
|
|
|
inline void IntRes2d_IntersectionPoint::SetValues
|
|
(const gp_Pnt2d& P,
|
|
const Standard_Real Uc1, const Standard_Real Uc2,
|
|
const IntRes2d_Transition& Trans1,
|
|
const IntRes2d_Transition& Trans2,
|
|
const Standard_Boolean ReversedFlag)
|
|
{
|
|
pt=P;
|
|
if (!ReversedFlag) {
|
|
trans1 = Trans1;
|
|
trans2 = Trans2;
|
|
p1 = Uc1;
|
|
p2 = Uc2;
|
|
}
|
|
else {
|
|
trans1 = Trans2;
|
|
trans2 = Trans1;
|
|
p1 = Uc2;
|
|
p2 = Uc1;
|
|
}
|
|
}
|
|
|
|
inline const gp_Pnt2d &IntRes2d_IntersectionPoint::Value () const {
|
|
return pt;
|
|
}
|
|
|
|
inline Standard_Real IntRes2d_IntersectionPoint::ParamOnFirst () const {
|
|
return p1;
|
|
}
|
|
|
|
inline Standard_Real IntRes2d_IntersectionPoint::ParamOnSecond () const {
|
|
return p2;
|
|
}
|
|
|
|
inline const IntRes2d_Transition& IntRes2d_IntersectionPoint::TransitionOfFirst () const {
|
|
return trans1;
|
|
}
|
|
|
|
inline const IntRes2d_Transition& IntRes2d_IntersectionPoint::TransitionOfSecond ()
|
|
const {
|
|
return trans2;
|
|
}
|