summaryrefslogtreecommitdiff
path: root/include/basegfx/range/b2drange.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/basegfx/range/b2drange.hxx')
-rw-r--r--include/basegfx/range/b2drange.hxx25
1 files changed, 0 insertions, 25 deletions
diff --git a/include/basegfx/range/b2drange.hxx b/include/basegfx/range/b2drange.hxx
index 00eab63d1472..0de9dba0e783 100644
--- a/include/basegfx/range/b2drange.hxx
+++ b/include/basegfx/range/b2drange.hxx
@@ -274,29 +274,8 @@ namespace basegfx
maRangeY.grow(fValue);
}
- /// clamp value on range
- B2DTuple clamp(const B2DTuple& rTuple) const
- {
- return B2DTuple(
- maRangeX.clamp(rTuple.getX()),
- maRangeY.clamp(rTuple.getY()));
- }
-
- /** Transform Range by given transformation matrix. */
BASEGFX_DLLPUBLIC void transform(const B2DHomMatrix& rMatrix);
- /** Transform Range by given transformation matrix.
-
- This operation transforms the Range by transforming all four possible
- extrema points (corners) of the given range and building a new one.
- This means that the range will grow evtl. when a shear and/or rotation
- is part of the transformation.
- */
- B2DRange& operator*=( const ::basegfx::B2DHomMatrix& rMat );
-
- /** Get a range filled with (0.0, 0.0, 1.0, 1.0) */
- static const B2DRange& getUnitB2DRange();
-
private:
typedef ::basegfx::BasicRange< ValueType, TraitsType > MyBasicRange;
@@ -304,10 +283,6 @@ namespace basegfx
MyBasicRange maRangeY;
};
- /** Transform B2DRange by given transformation matrix (see operator*=())
- */
- B2DRange operator*( const B2DHomMatrix& rMat, const B2DRange& rB2DRange );
-
/** Round double to nearest integer for 2D range
@return the nearest integer for this range