1
0
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:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

32
src/IntPatch/IntPatch_Line.cxx Executable file
View File

@@ -0,0 +1,32 @@
#include <IntPatch_Line.ixx>
IntPatch_Line::IntPatch_Line (const Standard_Boolean Tang,
const IntSurf_TypeTrans Trans1,
const IntSurf_TypeTrans Trans2):
tg(Tang),
tS1(Trans1),tS2(Trans2),
sit1(IntSurf_Unknown),sit2(IntSurf_Unknown),
uS1(Standard_False),vS1(Standard_False),
uS2(Standard_False),vS2(Standard_False)
{}
IntPatch_Line::IntPatch_Line (const Standard_Boolean Tang,
const IntSurf_Situation Situ1,
const IntSurf_Situation Situ2):
tg(Tang),
tS1(IntSurf_Touch),tS2(IntSurf_Touch),
sit1(Situ1),sit2(Situ2),
uS1(Standard_False),vS1(Standard_False),
uS2(Standard_False),vS2(Standard_False)
{}
IntPatch_Line::IntPatch_Line (const Standard_Boolean Tang):
tg(Tang),
tS1(IntSurf_Undecided),tS2(IntSurf_Undecided),
sit1(IntSurf_Unknown),sit2(IntSurf_Unknown),
uS1(Standard_False),vS1(Standard_False),
uS2(Standard_False),vS2(Standard_False)
{}