mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-26 10:19:45 +03:00
The copying permission statements at the beginning of source files updated to refer to LGPL. Copyright dates extended till 2014 in advance.
117 lines
3.8 KiB
C++
117 lines
3.8 KiB
C++
// Created on: 1994-04-18
|
|
// Created by: Didier PIFFAULT
|
|
// Copyright (c) 1994-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 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 <SelectBasics_SortAlgo.ixx>
|
|
#include <TColStd_ListIteratorOfListOfInteger.hxx>
|
|
#include <TColStd_MapOfInteger.hxx>
|
|
#include <gp_Pnt2d.hxx>
|
|
|
|
//=======================================================================
|
|
//function : SelectBasics_SortAlgo
|
|
//purpose :
|
|
//=======================================================================
|
|
SelectBasics_SortAlgo::SelectBasics_SortAlgo()
|
|
: sizeArea(0.)
|
|
{}
|
|
|
|
//=======================================================================
|
|
//function : SelectBasics_SortAlgo
|
|
//purpose :
|
|
//=======================================================================
|
|
SelectBasics_SortAlgo::SelectBasics_SortAlgo
|
|
(const Bnd_Box2d& ClippingRectangle,
|
|
const Standard_Real sizeOfSensitiveArea,
|
|
const Handle_Bnd_HArray1OfBox2d& theRectangles)
|
|
: clipRect(ClippingRectangle), sizeArea(sizeOfSensitiveArea)
|
|
{
|
|
sortedRect.Initialize(clipRect, theRectangles);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Initialize
|
|
//purpose :
|
|
//=======================================================================
|
|
void SelectBasics_SortAlgo::Initialize(const Bnd_Box2d& ClippingRectangle,
|
|
const Standard_Real sizeOfSensitiveArea,
|
|
const Handle_Bnd_HArray1OfBox2d& theRectangles)
|
|
{
|
|
clipRect=ClippingRectangle;
|
|
sizeArea=sizeOfSensitiveArea;
|
|
sortedRect.Initialize(clipRect, theRectangles);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Select
|
|
//purpose :
|
|
//=======================================================================
|
|
void SelectBasics_SortAlgo::InitSelect(const Standard_Real x,
|
|
const Standard_Real y)
|
|
{
|
|
Bnd_Box2d rep;
|
|
rep.Set(gp_Pnt2d(x, y));
|
|
rep.Enlarge(sizeArea);
|
|
myMap.Clear() ;
|
|
TColStd_ListIteratorOfListOfInteger It(sortedRect.Compare(rep));
|
|
for(;It.More();It.Next()){
|
|
myMap.Add(It.Value());
|
|
}
|
|
curResult.Initialize(myMap);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Select
|
|
//purpose :
|
|
//=======================================================================
|
|
void SelectBasics_SortAlgo::InitSelect(const Bnd_Box2d& rect)
|
|
{
|
|
myMap.Clear() ;
|
|
TColStd_ListIteratorOfListOfInteger It(sortedRect.Compare(rect));
|
|
for(;It.More();It.Next()){
|
|
myMap.Add(It.Value());
|
|
}
|
|
curResult.Initialize(myMap);
|
|
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : More
|
|
//purpose :
|
|
//=======================================================================
|
|
Standard_Boolean SelectBasics_SortAlgo::More() const
|
|
{
|
|
return curResult.More();
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Next
|
|
//purpose :
|
|
//=======================================================================
|
|
void SelectBasics_SortAlgo::Next()
|
|
{
|
|
curResult.Next();
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Value
|
|
//purpose :
|
|
//=======================================================================
|
|
Standard_Integer SelectBasics_SortAlgo::Value() const
|
|
{
|
|
return curResult.Key();
|
|
}
|
|
|