fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / basegfx / source / range / b2drange.cxx
blob2f4a3e08e69ebea2213f754285a2f110953f3696
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include <basegfx/range/b2drange.hxx>
21 #include <basegfx/range/b2irange.hxx>
22 #include <basegfx/numeric/ftools.hxx>
23 #include <basegfx/matrix/b2dhommatrix.hxx>
25 namespace basegfx
27 B2DRange::B2DRange( const B2IRange& rRange ) :
28 maRangeX(),
29 maRangeY()
31 if( !rRange.isEmpty() )
33 maRangeX = MyBasicRange(rRange.getMinX());
34 maRangeY = MyBasicRange(rRange.getMinY());
36 maRangeX.expand(rRange.getMaxX());
37 maRangeY.expand(rRange.getMaxY());
41 void B2DRange::transform(const B2DHomMatrix& rMatrix)
43 if(!isEmpty() && !rMatrix.isIdentity())
45 const B2DRange aSource(*this);
46 reset();
47 expand(rMatrix * B2DPoint(aSource.getMinX(), aSource.getMinY()));
48 expand(rMatrix * B2DPoint(aSource.getMaxX(), aSource.getMinY()));
49 expand(rMatrix * B2DPoint(aSource.getMinX(), aSource.getMaxY()));
50 expand(rMatrix * B2DPoint(aSource.getMaxX(), aSource.getMaxY()));
54 B2IRange fround(const B2DRange& rRange)
56 return rRange.isEmpty() ?
57 B2IRange() :
58 B2IRange(fround(rRange.getMinimum()),
59 fround(rRange.getMaximum()));
61 } // end of namespace basegfx
63 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */