mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
Integration of OCCT 6.5.0 from SVN
This commit is contained in:
128
src/IntCurve/IntCurve_IntConicConic.lxx
Executable file
128
src/IntCurve/IntCurve_IntConicConic.lxx
Executable file
@@ -0,0 +1,128 @@
|
||||
// File: IntCurve_IntConicConic.lxx
|
||||
// Created: Wed Feb 19 10:25:13 1997
|
||||
// Author: Laurent BUCHARD
|
||||
// <lbr@cracbox.paris1.matra-dtv.fr>
|
||||
|
||||
|
||||
#define CONSTRUCTOR IntCurve_IntConicConic::IntCurve_IntConicConic
|
||||
#define PERFORM void IntCurve_IntConicConic::Perform
|
||||
|
||||
|
||||
inline CONSTRUCTOR() { }
|
||||
|
||||
//---------------------------------------------------------------------- L P
|
||||
inline CONSTRUCTOR(const gp_Lin2d& L,const IntRes2d_Domain& DL
|
||||
,const gp_Parab2d& P,const IntRes2d_Domain& DP
|
||||
,const Standard_Real TolConf,const Standard_Real Tol) {
|
||||
Perform(L,DL,P,DP,TolConf,Tol);
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------- L E
|
||||
inline CONSTRUCTOR(const gp_Lin2d& L,const IntRes2d_Domain& DL
|
||||
,const gp_Elips2d& E,const IntRes2d_Domain& DE
|
||||
,const Standard_Real TolConf,const Standard_Real Tol) {
|
||||
|
||||
Perform(L,DL,E,DE,TolConf,Tol);
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------- L H
|
||||
inline CONSTRUCTOR(const gp_Lin2d& L,const IntRes2d_Domain& DL
|
||||
,const gp_Hypr2d& H,const IntRes2d_Domain& DH
|
||||
,const Standard_Real TolConf,const Standard_Real Tol) {
|
||||
|
||||
Perform(L,DL,H,DH,TolConf,Tol);
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------- C P
|
||||
inline CONSTRUCTOR(const gp_Circ2d& C,const IntRes2d_Domain& DC
|
||||
,const gp_Parab2d& P,const IntRes2d_Domain& DP
|
||||
,const Standard_Real TolConf,const Standard_Real Tol) {
|
||||
|
||||
Perform(C,DC,P,DP,TolConf,Tol);
|
||||
}
|
||||
//---------------------------------------------------------------------- C E
|
||||
inline CONSTRUCTOR(const gp_Circ2d& C,const IntRes2d_Domain& DC
|
||||
,const gp_Elips2d& E,const IntRes2d_Domain& DE
|
||||
,const Standard_Real TolConf,const Standard_Real Tol) {
|
||||
|
||||
Perform(C,DC,E,DE,TolConf,Tol);
|
||||
}
|
||||
//---------------------------------------------------------------------- C H
|
||||
inline CONSTRUCTOR(const gp_Circ2d& C,const IntRes2d_Domain& DC
|
||||
,const gp_Hypr2d& H,const IntRes2d_Domain& DH
|
||||
,const Standard_Real TolConf,const Standard_Real Tol) {
|
||||
|
||||
Perform(C,DC,H,DH,TolConf,Tol);
|
||||
}
|
||||
//---------------------------------------------------------------------- P P
|
||||
inline CONSTRUCTOR(const gp_Parab2d& P1,const IntRes2d_Domain& D1
|
||||
,const gp_Parab2d& P2,const IntRes2d_Domain& D2
|
||||
,const Standard_Real TolConf,const Standard_Real Tol) {
|
||||
|
||||
Perform(P1,D1,P2,D2,TolConf,Tol);
|
||||
}
|
||||
//---------------------------------------------------------------------- E P
|
||||
inline CONSTRUCTOR(const gp_Elips2d& E,const IntRes2d_Domain& DE
|
||||
,const gp_Parab2d& P,const IntRes2d_Domain& DP
|
||||
,const Standard_Real TolConf,const Standard_Real Tol) {
|
||||
Perform(E,DE,P,DP,TolConf,Tol);
|
||||
}
|
||||
//---------------------------------------------------------------------- P H
|
||||
inline CONSTRUCTOR(const gp_Parab2d& P,const IntRes2d_Domain& DP
|
||||
,const gp_Hypr2d& H,const IntRes2d_Domain& DH
|
||||
,const Standard_Real TolConf,const Standard_Real Tol) {
|
||||
|
||||
Perform(P,DP,H,DH,TolConf,Tol);
|
||||
}
|
||||
//---------------------------------------------------------------------- E E
|
||||
inline CONSTRUCTOR(const gp_Elips2d& E1,const IntRes2d_Domain& D1
|
||||
,const gp_Elips2d& E2,const IntRes2d_Domain& D2
|
||||
,const Standard_Real TolConf,const Standard_Real Tol) {
|
||||
|
||||
Perform(E1,D1,E2,D2,TolConf,Tol);
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------- E H
|
||||
inline CONSTRUCTOR(const gp_Elips2d& E,const IntRes2d_Domain& DE
|
||||
,const gp_Hypr2d& H,const IntRes2d_Domain& DH
|
||||
,const Standard_Real TolConf,const Standard_Real Tol) {
|
||||
|
||||
Perform(E,DE,H,DH,TolConf,Tol);
|
||||
}
|
||||
//---------------------------------------------------------------------- H H
|
||||
inline CONSTRUCTOR(const gp_Hypr2d& H1,const IntRes2d_Domain& DH1
|
||||
,const gp_Hypr2d& H2,const IntRes2d_Domain& DH2
|
||||
,const Standard_Real TolConf,const Standard_Real Tol) {
|
||||
|
||||
Perform(H1,DH1,H2,DH2,TolConf,Tol);
|
||||
}
|
||||
//---------------------------------------------------------------------- L L
|
||||
inline CONSTRUCTOR(const gp_Lin2d& L1
|
||||
,const IntRes2d_Domain& D1
|
||||
,const gp_Lin2d& L2
|
||||
,const IntRes2d_Domain& D2
|
||||
,const Standard_Real TolConf
|
||||
,const Standard_Real Tol) {
|
||||
Perform(L1,D1,L2,D2,TolConf,Tol);
|
||||
}
|
||||
//---------------------------------------------------------------------- L C
|
||||
inline CONSTRUCTOR(const gp_Lin2d& L1
|
||||
,const IntRes2d_Domain& D1
|
||||
,const gp_Circ2d& C2
|
||||
,const IntRes2d_Domain& D2
|
||||
,const Standard_Real TolConf
|
||||
,const Standard_Real Tol) {
|
||||
|
||||
Perform(L1,D1,C2,D2,TolConf,Tol);
|
||||
}
|
||||
//---------------------------------------------------------------------- C C
|
||||
|
||||
inline CONSTRUCTOR(const gp_Circ2d& C1
|
||||
,const IntRes2d_Domain& D1
|
||||
,const gp_Circ2d& C2
|
||||
,const IntRes2d_Domain& D2
|
||||
,const Standard_Real TolConf
|
||||
,const Standard_Real Tol) {
|
||||
SetReversedParameters(Standard_False);
|
||||
Perform(C1,D1,C2,D2,TolConf,Tol);
|
||||
}
|
Reference in New Issue
Block a user