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

67
src/MAT/MAT_Edge.cxx Executable file
View File

@@ -0,0 +1,67 @@
// File: MAT_Edge.cxx
// Created: Wed Oct 14 10:30:09 1992
// Author: Gilles DEBARBOUILLE
// <gde@bravox>
#include <MAT_Edge.ixx>
MAT_Edge::MAT_Edge()
{
}
void MAT_Edge::EdgeNumber(const Standard_Integer anumber)
{
theedgenumber = anumber;
}
void MAT_Edge::FirstBisector(const Handle(MAT_Bisector)& abisector)
{
thefirstbisector = abisector;
}
void MAT_Edge::SecondBisector(const Handle(MAT_Bisector)& abisector)
{
thesecondbisector = abisector;
}
void MAT_Edge::Distance(const Standard_Real adistance)
{
thedistance = adistance;
}
void MAT_Edge::IntersectionPoint(const Standard_Integer apoint)
{
theintersectionpoint = apoint;
}
Standard_Integer MAT_Edge::EdgeNumber() const
{
return theedgenumber;
}
Handle(MAT_Bisector) MAT_Edge::FirstBisector() const
{
return thefirstbisector;
}
Handle(MAT_Bisector) MAT_Edge::SecondBisector() const
{
return thesecondbisector;
}
Standard_Real MAT_Edge::Distance() const
{
return thedistance;
}
Standard_Integer MAT_Edge::IntersectionPoint() const
{
return theintersectionpoint;
}
void MAT_Edge::Dump(const Standard_Integer,
const Standard_Integer) const
{
}