/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * 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. * * 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). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef _MCVMATH_HXX #define _MCVMATH_HXX #include class FixCpx; class ColWheel; // No of fractal bits // allowed range 0..14, must be even #define FIX_POST 14 // scale for ...Big() -Functions #if (FIX_POST>=4) #define FIX_P2 4 #define FIX_P3 (FIX_POST-FIX_P2) #else #define FIX_P2 0 #define FIX_P3 FIX_POST #endif #if (FIX_POST>=1) #define FIX_ADD (1<<(FIX_POST-1)) #else #define FIX_ADD 0 #endif #if (FIX_P2>=1) #define FIX_A2 (1<<(FIX_P2-1)) #else #define FIX_A2 0 #endif #if (FIX_P3>=1) #define FIX_A3 (1<<(FIX_P3-1)) #else #define FIX_A3 0 #endif // ------- // - Fix - // ------- class Fix { private: friend class FixCpx; friend class ColWheel; // friend Fix ImpMultBig2( const Fix& a, const Fix& b ); public: long x; public: Fix() { x=0; } Fix( int i ) { x=(long(i)<>FIX_POST; } void operator/= ( const Fix& a ) { x=(x<>FIX_P2)*x+FIX_A3)>>FIX_P3); } void DivBig( const Fix& a ) { x=((x< ( const Fix& a, const Fix& b ) { return a.x > b.x; } friend BOOL operator< ( const Fix& a, const Fix& b ) { return a.x < b.x; } operator long() const { return (x+FIX_ADD) >> FIX_POST; } operator double() const { return double(x)/(1<>FIX_POST; return *((Fix*)&l); } inline Fix operator/ ( const Fix& a, const Fix& b ) { long l=(a.x<