LibreOffice Module basegfx (master) 1
b2drange.cxx
Go to the documentation of this file.
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
23
24namespace basegfx
25{
27 {
28 if (!rRange.isEmpty())
29 {
32
33 maRangeX.expand(rRange.getMaxX());
34 maRangeY.expand(rRange.getMaxY());
35 }
36 }
37
38 void B2DRange::transform(const B2DHomMatrix& rMatrix)
39 {
40 if(!isEmpty() && !rMatrix.isIdentity())
41 {
42 const B2DRange aSource(*this);
43 reset();
44 expand(rMatrix * B2DPoint(aSource.getMinX(), aSource.getMinY()));
45 expand(rMatrix * B2DPoint(aSource.getMaxX(), aSource.getMinY()));
46 expand(rMatrix * B2DPoint(aSource.getMinX(), aSource.getMaxY()));
47 expand(rMatrix * B2DPoint(aSource.getMaxX(), aSource.getMaxY()));
48 }
49 }
50
52 {
53 transform(rMatrix);
54 return *this;
55 }
56
58 {
59 static const B2DRange aUnitB2DRange(0.0, 0.0, 1.0, 1.0);
60
61 return aUnitB2DRange;
62 }
63
64 B2IRange fround(const B2DRange& rRange)
65 {
66 return rRange.isEmpty() ?
67 B2IRange() :
68 B2IRange(fround(rRange.getMinimum()),
69 fround(rRange.getMaximum()));
70 }
71
72 B2DRange operator*( const ::basegfx::B2DHomMatrix& rMat, const B2DRange& rB2DRange )
73 {
74 B2DRange aRes( rB2DRange );
75 aRes *= rMat;
76 return aRes;
77 }
78
79} // end of namespace basegfx
80
81/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
bool isIdentity() const
Base Point class with two double values.
Definition: b2dpoint.hxx:42
A two-dimensional interval over doubles.
Definition: b2drange.hxx:54
B2DPoint getMaximum() const
get upper bound of the set. returns arbitrary values for empty sets.
Definition: b2drange.hxx:89
BASEGFX_DLLPUBLIC B2DRange & operator*=(const ::basegfx::B2DHomMatrix &rMat)
Transform Range by given transformation matrix.
Definition: b2drange.cxx:51
BASEGFX_DLLPUBLIC void transform(const B2DHomMatrix &rMatrix)
Transform Range by given transformation matrix.
Definition: b2drange.cxx:38
static BASEGFX_DLLPUBLIC const B2DRange & getUnitB2DRange()
Get a range filled with (0.0, 0.0, 1.0, 1.0)
Definition: b2drange.cxx:57
B2DPoint getMinimum() const
get lower bound of the set. returns arbitrary values for empty sets.
Definition: b2drange.hxx:80
A two-dimensional interval over integers.
Definition: b2irange.hxx:53
void expand(T nValue)
Definition: basicrange.hxx:152
TYPE getMaxX() const
get upper bound of the set. returns arbitrary values for empty sets.
Definition: Range2D.hxx:100
TYPE getMinX() const
get lower bound of the set. returns arbitrary values for empty sets.
Definition: Range2D.hxx:94
basegfx::BasicRange< double, DoubleTraits > maRangeX
Definition: Range2D.hxx:31
TYPE getMinY() const
get lower bound of the set. returns arbitrary values for empty sets.
Definition: Range2D.hxx:97
void expand(const Tuple2D< double > &rTuple)
add point to the set, expanding as necessary
Definition: Range2D.hxx:142
void reset()
reset the object to empty state again, clearing all values
Definition: Range2D.hxx:72
TYPE getMaxY() const
get upper bound of the set. returns arbitrary values for empty sets.
Definition: Range2D.hxx:103
basegfx::BasicRange< double, DoubleTraits > maRangeY
Definition: Range2D.hxx:32
bool isEmpty() const
Check if the interval set is empty.
Definition: Range2D.hxx:69
B2IRange fround(const B2DRange &rRange)
Round double to nearest integer for 2D range.
Definition: b2drange.cxx:64
B2DPoint operator*(const ::basegfx::B2DHomMatrix &rMat, const B2DPoint &rPoint)
Definition: b2dpoint.cxx:43