mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-07 18:30:55 +03:00
294 lines
9.3 KiB
C++
294 lines
9.3 KiB
C++
// Created on: 1993-10-11
|
|
// Created by: Yves FRICAUD
|
|
// Copyright (c) 1993-1999 Matra Datavision
|
|
// Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
|
|
#include <gp_Pnt2d.hxx>
|
|
#include <gp_Vec2d.hxx>
|
|
#include <MAT2d_Connexion.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(MAT2d_Connexion,MMgt_TShared)
|
|
|
|
//=============================================================================
|
|
//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;
|
|
}
|