1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-01 10:26:12 +03:00
occt/src/MAT2d/MAT2d_Connexion.cxx
bugmaster b311480ed5 0023024: Update headers of OCCT files
Added appropriate copyright and license information in source files
2012-03-21 19:43:04 +04:00

297 lines
9.6 KiB
C++
Executable File

// Created on: 1993-10-11
// Created by: Yves FRICAUD
// Copyright (c) 1993-1999 Matra Datavision
// Copyright (c) 1999-2012 OPEN CASCADE SAS
//
// The content of this file is subject to the Open CASCADE Technology Public
// License Version 6.5 (the "License"). You may not use the content of this file
// except in compliance with the License. Please obtain a copy of the License
// at http://www.opencascade.org and read it completely before using this file.
//
// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
//
// The Original Code and all software distributed under the License is
// distributed on an "AS IS" basis, without warranty of any kind, and the
// Initial Developer hereby disclaims all such warranties, including without
// limitation, any warranties of merchantability, fitness for a particular
// purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License.
#include <MAT2d_Connexion.ixx>
#include <gp_Pnt2d.hxx>
#include <gp_Vec2d.hxx>
//=============================================================================
//function :
//purpose :
//=============================================================================
MAT2d_Connexion::MAT2d_Connexion()
{
}
//=============================================================================
//function :
//purpose :
//=============================================================================
MAT2d_Connexion::MAT2d_Connexion(const Standard_Integer LineA,
const Standard_Integer LineB,
const Standard_Integer ItemA,
const Standard_Integer ItemB,
const Standard_Real Distance,
const Standard_Real ParameterOnA,
const Standard_Real ParameterOnB,
const gp_Pnt2d& PointA,
const gp_Pnt2d& PointB):
lineA(LineA), lineB(LineB),itemA(ItemA),itemB(ItemB),
distance(Distance),
parameterOnA(ParameterOnA),parameterOnB(ParameterOnB),
pointA(PointA),pointB(PointB)
{
}
//=============================================================================
//function : IndexFirstLine
//purpose :
//=============================================================================
Standard_Integer MAT2d_Connexion::IndexFirstLine() const
{
return lineA;
}
//=============================================================================
//function : IndexSecondLine
//purpose :
//=============================================================================
Standard_Integer MAT2d_Connexion::IndexSecondLine() const
{
return lineB;
}
//=============================================================================
//function : IndexItemOnFirst
//purpose :
//=============================================================================
Standard_Integer MAT2d_Connexion::IndexItemOnFirst()const
{
return itemA;
}
//=============================================================================
//function : IndexItemOnSecond
// purpose :
//=============================================================================
Standard_Integer MAT2d_Connexion::IndexItemOnSecond() const
{
return itemB;
}
//=============================================================================
//function : ParameterOnFirst
//purpose :
//=============================================================================
Standard_Real MAT2d_Connexion::ParameterOnFirst() const
{
return parameterOnA;
}
//=============================================================================
//function : ParameterOnSecond
// purpose :
//=============================================================================
Standard_Real MAT2d_Connexion::ParameterOnSecond() const
{
return parameterOnB;
}
//=============================================================================
//function : PointOnFirst
//purpose :
//=============================================================================
gp_Pnt2d MAT2d_Connexion::PointOnFirst() const
{
return pointA;
}
//=============================================================================
//function : PointOnSecond
//purpose :
//=============================================================================
gp_Pnt2d MAT2d_Connexion::PointOnSecond() const
{
return pointB;
}
//=============================================================================
//function : Distance
//purpose :
//=============================================================================
Standard_Real MAT2d_Connexion::Distance() const
{
return distance;
}
//=============================================================================
//function : IndexFirstLine
//purpose :
//=============================================================================
void MAT2d_Connexion::IndexFirstLine(const Standard_Integer anIndex)
{
lineA = anIndex;
}
//=============================================================================
//function : IndexSecondLine
//purpose :
//=============================================================================
void MAT2d_Connexion::IndexSecondLine(const Standard_Integer anIndex)
{
lineB = anIndex;
}
//=============================================================================
//function : IndexItemOnFirst
//purpose :
//=============================================================================
void MAT2d_Connexion::IndexItemOnFirst(const Standard_Integer anIndex)
{
itemA = anIndex;
}
//=============================================================================
//function : IndexItemOnSecond
//purpose :
//=============================================================================
void MAT2d_Connexion::IndexItemOnSecond(const Standard_Integer anIndex)
{
itemB = anIndex;
}
//=============================================================================
//function : ParameterOnFirst
//purpose :
//=============================================================================
void MAT2d_Connexion::ParameterOnFirst(const Standard_Real aParameter)
{
parameterOnA = aParameter;
}
//=============================================================================
//function : ParameterOnSecond
//purpose :
//=============================================================================
void MAT2d_Connexion::ParameterOnSecond(const Standard_Real aParameter)
{
parameterOnB = aParameter;
}
//=============================================================================
//function : PointOnFirst
//purpose :
//=============================================================================
void MAT2d_Connexion::PointOnFirst(const gp_Pnt2d& aPoint)
{
pointA = aPoint;
}
//=============================================================================
//function : PointOnSecond
//purpose :
//=============================================================================
void MAT2d_Connexion::PointOnSecond(const gp_Pnt2d& aPoint)
{
pointB = aPoint;
}
//=============================================================================
//function : Distance
//purpose :
//=============================================================================
void MAT2d_Connexion::Distance(const Standard_Real d)
{
distance = d;
}
//=============================================================================
//function : Reverse
//purpose :
//=============================================================================
Handle(MAT2d_Connexion) MAT2d_Connexion::Reverse() const
{
return new MAT2d_Connexion(lineB,lineA,itemB,itemA,distance,
parameterOnB,parameterOnA,pointB,pointA);
}
//=============================================================================
//function : IsAfter
//purpose :
//=============================================================================
Standard_Boolean MAT2d_Connexion::IsAfter(const Handle(MAT2d_Connexion)& C2,
const Standard_Real Sense) const
{
if (lineA != C2->IndexFirstLine()) {
return Standard_False;
}
if (itemA > C2->IndexItemOnFirst()) {
return Standard_True;
}
else if (itemA == C2->IndexItemOnFirst()){
if ( parameterOnA > C2->ParameterOnFirst()) {
return Standard_True;
}
else if ( parameterOnA == C2->ParameterOnFirst()) {
gp_Vec2d Vect1(C2->PointOnFirst(),C2->PointOnSecond());
gp_Vec2d Vect2(pointA,pointB);
if ((Vect1^Vect2)*Sense > 0) {
return Standard_True;
}
}
}
return Standard_False;
}
static void Indent(const Standard_Integer Offset) {
if (Offset > 0) {
for (Standard_Integer i = 0; i <Offset; i++) {cout <<" ";}
}
}
//=============================================================================
//function : Dump
//purpose :
//=============================================================================
void MAT2d_Connexion::Dump (const Standard_Integer ,
const Standard_Integer Offset) const
{
Standard_Integer MyOffset = Offset;
Indent (Offset);
cout<<"MAT2d_Connexion :"<<endl;
MyOffset++;
Indent (MyOffset);
cout <<"IndexFirstLine :"<<lineA<<endl;
Indent (MyOffset);
cout <<"IndexSecondLine :"<<lineB<<endl;
Indent (MyOffset);
cout <<"IndexItemOnFirst :"<<itemA<<endl;
Indent (MyOffset);
cout <<"IndexItemOnSecond :"<<itemB<<endl;
Indent (MyOffset);
cout <<"ParameterOnFirst :"<<parameterOnA<<endl;
Indent (MyOffset);
cout <<"ParameterOnSecond :"<<parameterOnB<<endl;
Indent (MyOffset);
cout <<"PointOnFirst :"<<endl;
cout <<" X = "<<pointA.X()<<endl;
cout <<" Y = "<<pointA.Y()<<endl;
Indent (MyOffset);
cout <<"PointOnSecond :"<<endl;
cout <<" X = "<<pointB.X()<<endl;
cout <<" Y = "<<pointB.Y()<<endl;
Indent (MyOffset);
cout <<"Distance :"<<distance<<endl;
}