LCOV - code coverage report
Current view: top level - libreoffice/basegfx/source/vector - b2dvector.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 80 80 100.0 %
Date: 2012-12-27 Functions: 15 15 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #include <basegfx/vector/b2dvector.hxx>
      21             : #include <basegfx/matrix/b2dhommatrix.hxx>
      22             : #include <basegfx/numeric/ftools.hxx>
      23             : 
      24             : namespace basegfx
      25             : {
      26       11425 :     B2DVector& B2DVector::normalize()
      27             :     {
      28       11425 :         double fLen(scalar(*this));
      29             : 
      30       11425 :         if(fTools::equalZero(fLen))
      31             :         {
      32           6 :             mfX = 0.0;
      33           6 :             mfY = 0.0;
      34             :         }
      35             :         else
      36             :         {
      37       11419 :             const double fOne(1.0);
      38             : 
      39       11419 :             if(!fTools::equal(fOne, fLen))
      40             :             {
      41        6963 :                 fLen = sqrt(fLen);
      42             : 
      43        6963 :                 if(!fTools::equalZero(fLen))
      44             :                 {
      45        6963 :                     mfX /= fLen;
      46        6963 :                     mfY /= fLen;
      47             :                 }
      48             :             }
      49             :         }
      50             : 
      51       11425 :         return *this;
      52             :     }
      53             : 
      54         159 :     B2DVector& B2DVector::operator=( const B2DTuple& rVec )
      55             :     {
      56         159 :         mfX = rVec.getX();
      57         159 :         mfY = rVec.getY();
      58         159 :         return *this;
      59             :     }
      60             : 
      61             : 
      62        3334 :     double B2DVector::getLength() const
      63             :     {
      64        3334 :         if(fTools::equalZero(mfX))
      65             :         {
      66        2512 :             return fabs(mfY);
      67             :         }
      68         822 :         else if(fTools::equalZero(mfY))
      69             :         {
      70         733 :             return fabs(mfX);
      71             :         }
      72             : 
      73          89 :         return hypot( mfX, mfY );
      74             :     }
      75             : 
      76       12480 :     double B2DVector::scalar( const B2DVector& rVec ) const
      77             :     {
      78       12480 :         return((mfX * rVec.mfX) + (mfY * rVec.mfY));
      79             :     }
      80             : 
      81        5322 :     double B2DVector::cross( const B2DVector& rVec ) const
      82             :     {
      83        5322 :         return(mfX * rVec.getY() - mfY * rVec.getX());
      84             :     }
      85             : 
      86         640 :     double B2DVector::angle( const B2DVector& rVec ) const
      87             :     {
      88        1280 :         return atan2(mfX * rVec.getY() - mfY * rVec.getX(),
      89        1920 :             mfX * rVec.getX() + mfY * rVec.getY());
      90             :     }
      91             : 
      92           5 :     const B2DVector& B2DVector::getEmptyVector()
      93             :     {
      94           5 :         return (const B2DVector&) B2DTuple::getEmptyTuple();
      95             :     }
      96             : 
      97        7138 :     B2DVector& B2DVector::operator*=( const B2DHomMatrix& rMat )
      98             :     {
      99        7138 :         const double fTempX( rMat.get(0,0)*mfX +
     100        7138 :                             rMat.get(0,1)*mfY );
     101        7138 :         const double fTempY( rMat.get(1,0)*mfX +
     102        7138 :                             rMat.get(1,1)*mfY );
     103        7138 :         mfX = fTempX;
     104        7138 :         mfY = fTempY;
     105             : 
     106        7138 :         return *this;
     107             :     }
     108             : 
     109         100 :     B2DVector& B2DVector::setLength(double fLen)
     110             :     {
     111         100 :         double fLenNow(scalar(*this));
     112             : 
     113         100 :         if(!fTools::equalZero(fLenNow))
     114             :         {
     115          97 :             const double fOne(10.0);
     116             : 
     117          97 :             if(!fTools::equal(fOne, fLenNow))
     118             :             {
     119          97 :                 fLen /= sqrt(fLenNow);
     120             :             }
     121             : 
     122          97 :             mfX *= fLen;
     123          97 :             mfY *= fLen;
     124             :         }
     125             : 
     126         100 :         return *this;
     127             :     }
     128             : 
     129       10013 :     bool areParallel( const B2DVector& rVecA, const B2DVector& rVecB )
     130             :     {
     131       10013 :         const double fValA(rVecA.getX() * rVecB.getY());
     132       10013 :         const double fValB(rVecA.getY() * rVecB.getX());
     133             : 
     134       10013 :         return fTools::equal(fValA, fValB);
     135             :     }
     136             : 
     137        1420 :     B2VectorOrientation getOrientation( const B2DVector& rVecA, const B2DVector& rVecB )
     138             :     {
     139        1420 :         double fVal(rVecA.getX() * rVecB.getY() - rVecA.getY() * rVecB.getX());
     140             : 
     141        1420 :         if(fTools::equalZero(fVal))
     142             :         {
     143         172 :             return ORIENTATION_NEUTRAL;
     144             :         }
     145             : 
     146        1248 :         if(fVal > 0.0)
     147             :         {
     148        1084 :             return ORIENTATION_POSITIVE;
     149             :         }
     150             :         else
     151             :         {
     152         164 :             return ORIENTATION_NEGATIVE;
     153             :         }
     154             :     }
     155             : 
     156        1080 :     B2DVector getPerpendicular( const B2DVector& rNormalizedVec )
     157             :     {
     158        1080 :         B2DVector aPerpendicular(-rNormalizedVec.getY(), rNormalizedVec.getX());
     159        1080 :         return aPerpendicular;
     160             :     }
     161             : 
     162        2120 :     B2DVector getNormalizedPerpendicular( const B2DVector& rVec )
     163             :     {
     164        2120 :         B2DVector aPerpendicular(rVec);
     165        2120 :         aPerpendicular.normalize();
     166        2120 :         const double aTemp(-aPerpendicular.getY());
     167        2120 :         aPerpendicular.setY(aPerpendicular.getX());
     168        2120 :         aPerpendicular.setX(aTemp);
     169        2120 :         return aPerpendicular;
     170             :     }
     171             : 
     172        7136 :     B2DVector operator*( const B2DHomMatrix& rMat, const B2DVector& rVec )
     173             :     {
     174        7136 :         B2DVector aRes( rVec );
     175        7136 :         return aRes*=rMat;
     176             :     }
     177             : 
     178        2523 :     B2VectorContinuity getContinuity(const B2DVector& rBackVector, const B2DVector& rForwardVector )
     179             :     {
     180        2523 :         if(rBackVector.equalZero() || rForwardVector.equalZero())
     181             :         {
     182         511 :             return CONTINUITY_NONE;
     183             :         }
     184             : 
     185        2012 :         if(fTools::equal(rBackVector.getX(), -rForwardVector.getX()) && fTools::equal(rBackVector.getY(), -rForwardVector.getY()))
     186             :         {
     187             :             // same direction and same length -> C2
     188          67 :             return CONTINUITY_C2;
     189             :         }
     190             : 
     191        1945 :         if(areParallel(rBackVector, rForwardVector) && rBackVector.scalar(rForwardVector) < 0.0)
     192             :         {
     193             :             // parallel and opposite direction -> C1
     194         914 :             return CONTINUITY_C1;
     195             :         }
     196             : 
     197        1031 :         return CONTINUITY_NONE;
     198             :     }
     199             : } // end of namespace basegfx
     200             : 
     201             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10