Remove unused functionality.

This commit is contained in:
Jeff Young 2020-02-15 19:31:13 +00:00
parent d374abc79b
commit 4014afad54
3 changed files with 0 additions and 55 deletions

View File

@ -62,8 +62,6 @@ void GERBER_COLLECTOR::Collect( EDA_ITEM* aItem, const KICAD_T aScanList[],
aItem->Visit( m_inspector, NULL, m_ScanTypes );
SetTimeNow(); // when snapshot was taken
// record the length of the primary list before concatenating on to it.
m_PrimaryLength = m_List.size();
}

View File

@ -62,8 +62,6 @@ protected:
wxPoint m_RefPos; // Reference position used to generate the collection.
EDA_RECT m_RefBox; // Selection rectangle used to generate the collection.
timestamp_t m_TimeAtCollection; // The time at which the collection was made.
public:
int m_Threshold; // Hit-test threshold in internal units.
@ -75,7 +73,6 @@ public:
m_ScanTypes( 0 ),
// Inspect() is virtual so calling it from a class common inspector preserves polymorphism.
m_inspector( [=] ( EDA_ITEM* aItem, void* aTestData ) { return this->Inspect( aItem, aTestData ); } ),
m_TimeAtCollection( 0 ),
m_Threshold( 0 ),
m_MenuCancelled( false )
{
@ -96,19 +93,6 @@ public:
CITER begin() const { return m_List.cbegin(); }
CITER end() const { return m_List.cend(); }
/**
* Function IsValidIndex
* tests if \a aIndex is with the limits of the list of collected items.
*
* @param aIndex The index to test.
* @return True if \a aIndex is with the limits of the list of collected items,
* otherwise false.
*/
bool IsValidIndex( int aIndex )
{
return ( (unsigned) aIndex < m_List.size() );
}
/**
* Function GetCount
* returns the number of objects in the list
@ -219,45 +203,10 @@ public:
m_ScanTypes = scanTypes;
}
void SetTimeNow()
{
m_TimeAtCollection = GetNewTimeStamp();
}
timestamp_t GetTime()
{
return m_TimeAtCollection;
}
void SetRefPos( const wxPoint& aRefPos ) { m_RefPos = aRefPos; }
const wxPoint& GetRefPos() const { return m_RefPos; }
void SetBoundingBox( const EDA_RECT& aRefBox ) { m_RefBox = aRefBox; }
const EDA_RECT& GetBoundingBox() const { return m_RefBox; }
/**
* Function IsSimilarPointAndTime
* returns true if the given reference point is "similar" (defined here)
* to the internal reference point and the current time is within a few
* seconds of the internal m_TimeAtCollection.
*
* @param aRefPos A wxPoint to compare to.
* @return bool - true if the point and time are similar, else false.
*/
bool IsSimilarPointAndTime( const wxPoint& aRefPos )
{
const int distMax = 2; // adjust these here
const timestamp_t timeMax = 3; // seconds
int dx = abs( aRefPos.x - m_RefPos.x );
int dy = abs( aRefPos.y - m_RefPos.y );
if( dx <= distMax && dy <= distMax &&
GetNewTimeStamp() - m_TimeAtCollection <= timeMax )
return true;
else
return false;
}
/**
* Function CountType
* counts the number of items matching aType

View File

@ -541,8 +541,6 @@ void GENERAL_COLLECTOR::Collect( BOARD_ITEM* aItem, const KICAD_T aScanList[],
aItem->Visit( m_inspector, NULL, m_ScanTypes );
SetTimeNow(); // when snapshot was taken
// record the length of the primary list before concatenating on to it.
m_PrimaryLength = m_List.size();