/*
* FlexiPix config file generator
*
* Copyright 2010 Stefan Schuermans <stefan schuermans info>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3 of the License.
*
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <vector>
#include "line.h"
#include "object.h"
Object::~Object()
{
std::vector<const Line *>::const_iterator itLine;
for (itLine = mLines.begin(); itLine != mLines.end(); ++itLine)
delete *itLine;
}
void Object::getBounds(Box &bounds) const
{
if (mLines.empty())
return;
(*mLines.begin())->getBounds(bounds);
Box bnds;
std::vector<const Line *>::const_iterator itLine;
for (itLine = mLines.begin() + 1; itLine != mLines.end(); ++itLine) {
(*itLine)->getBounds(bnds);
bounds.include(bnds);
}
}
bool Object::isIntersecting(const Line *pLine) const
{
Box b, b2;
getBounds(b);
pLine->getBounds(b2);