office-gobmx/basegfx/source/curve/b2dquadraticbezier.cxx

107 lines
3.3 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2003-10-28 04:26:57 -06:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2003-10-28 04:26:57 -06:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2003-10-28 04:26:57 -06:00
*
* OpenOffice.org - a multi-platform office productivity suite
2003-10-28 04:26:57 -06:00
*
* This file is part of OpenOffice.org.
2003-10-28 04:26:57 -06:00
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
2003-10-28 04:26:57 -06:00
*
* OpenOffice.org 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 Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
2003-10-28 04:26:57 -06:00
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
2003-10-28 04:26:57 -06:00
*
************************************************************************/
#include <basegfx/curve/b2dquadraticbezier.hxx>
#include <basegfx/numeric/ftools.hxx>
2003-10-28 04:26:57 -06:00
//////////////////////////////////////////////////////////////////////////////
namespace basegfx
{
B2DQuadraticBezier::B2DQuadraticBezier(const B2DQuadraticBezier& rBezier)
: maStartPoint(rBezier.maStartPoint),
maEndPoint(rBezier.maEndPoint),
maControlPoint(rBezier.maControlPoint)
2003-10-28 04:26:57 -06:00
{
}
2003-10-28 04:26:57 -06:00
B2DQuadraticBezier::B2DQuadraticBezier()
{
}
2003-10-28 04:26:57 -06:00
B2DQuadraticBezier::B2DQuadraticBezier(const ::basegfx::B2DPoint& rStart, const ::basegfx::B2DPoint& rEnd)
: maStartPoint(rStart),
maEndPoint(rEnd)
{
}
2003-10-28 04:26:57 -06:00
B2DQuadraticBezier::B2DQuadraticBezier(const ::basegfx::B2DPoint& rStart, const ::basegfx::B2DPoint& rControl, const ::basegfx::B2DPoint& rEnd)
: maStartPoint(rStart),
maEndPoint(rEnd),
maControlPoint(rControl)
{
}
2003-10-28 04:26:57 -06:00
B2DQuadraticBezier::~B2DQuadraticBezier()
{
}
2003-10-28 04:26:57 -06:00
// assignment operator
B2DQuadraticBezier& B2DQuadraticBezier::operator=(const B2DQuadraticBezier& rBezier)
{
maStartPoint = rBezier.maStartPoint;
maEndPoint = rBezier.maEndPoint;
maControlPoint = rBezier.maControlPoint;
2003-10-28 04:26:57 -06:00
return *this;
}
2003-10-28 04:26:57 -06:00
// compare operators
bool B2DQuadraticBezier::operator==(const B2DQuadraticBezier& rBezier) const
{
return (
maStartPoint == rBezier.maStartPoint
&& maEndPoint == rBezier.maEndPoint
&& maControlPoint == rBezier.maControlPoint
);
}
2003-10-28 04:26:57 -06:00
bool B2DQuadraticBezier::operator!=(const B2DQuadraticBezier& rBezier) const
{
return (
maStartPoint != rBezier.maStartPoint
|| maEndPoint != rBezier.maEndPoint
|| maControlPoint != rBezier.maControlPoint
);
}
2003-10-28 04:26:57 -06:00
// test if control vector is used
bool B2DQuadraticBezier::isBezier() const
{
// if control vector is empty, bezier is not used
if(maControlPoint == maStartPoint || maControlPoint == maEndPoint)
return false;
2003-10-28 04:26:57 -06:00
return true;
}
2003-10-28 04:26:57 -06:00
} // end of namespace basegfx
// eof
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */