summaryrefslogtreecommitdiff
path: root/basegfx/inc/basegfx/point/b2dhompoint.hxx
blob: 3b145bf4e44411dd9ef044f489fa06f5260adc0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
/*************************************************************************
 *
 *  $RCSfile: b2dhompoint.hxx,v $
 *
 *  $Revision: 1.3 $
 *
 *  last change: $Author: aw $ $Date: 2003-11-06 16:30:23 $
 *
 *  The Contents of this file are made available subject to the terms of
 *  either of the following licenses
 *
 *         - GNU Lesser General Public License Version 2.1
 *         - Sun Industry Standards Source License Version 1.1
 *
 *  Sun Microsystems Inc., October, 2000
 *
 *  GNU Lesser General Public License Version 2.1
 *  =============================================
 *  Copyright 2000 by Sun Microsystems, Inc.
 *  901 San Antonio Road, Palo Alto, CA 94303, USA
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License version 2.1, as published by the Free Software Foundation.
 *
 *  This library 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 for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 *  MA  02111-1307  USA
 *
 *
 *  Sun Industry Standards Source License Version 1.1
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.1 (the "License"); You may not use this file
 *  except in compliance with the License. You may obtain a copy of the
 *  License at http://www.openoffice.org/license.html.
 *
 *  Software provided under this License is provided on an "AS IS" basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 *
 *  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 *
 *  Copyright: 2000 by Sun Microsystems, Inc.
 *
 *  All Rights Reserved.
 *
 *  Contributor(s): _______________________________________
 *
 *
 ************************************************************************/

#ifndef _BGFX_POINT_B2DHOMPOINT_HXX
#define _BGFX_POINT_B2DHOMPOINT_HXX

#ifndef _BGFX_POINT_B2DPOINT_HXX
#include <basegfx/point/b2dpoint.hxx>
#endif

namespace basegfx
{
    namespace point
    {
        /** Basic homogen Point class with two double values and one homogen factor

            This class provides access to homogen coordinates in 2D.
            For this purpose all the operators which need to do specific
            action due to their homogenity are implemented here.
            The only caveat are member methods which are declared as const
            but do change the content. These are documented for that reason.
            The class is designed to provide homogenous coordinates without
            direct access to the homogen part (mfW). This is also the reason
            for leaving out the [] operators which return references to members.

            @see B2DTuple
        */
        class B2DHomPoint
        {
        protected:
            /// This member contains the coordinate part of the point
            ::basegfx::tuple::B2DTuple                  maTuple;

            /// This Member holds the homogenous part of the point
            double                                      mfW;

            /** Test if this homogen point does have a homogenous part

                @return Returns sal_True if this point has no homogenous part
            */
            sal_Bool implIsHomogenized() const;

            /** Remove homogenous part of this Point

                This method does necessary calculations to remove
                the evtl. homogenous part of this Point. This may
                change all members.
            */
            void implHomogenize();

            /** Test and on demand remove homogenous part

                This method tests if this Point does have a homogenous part
                and then evtl. takes actions to remove that part.

                @attention Even when this method is const it may change all
                members of this instance. This is due to the fact that changing
                the homogenous part of a homogenous point does from a mathematical
                point of view not change the point at all.
            */
            void implTestAndHomogenize() const;

        public:
            /** Create a homogen point

                @param fVal
                This parameter is used to initialize the coordinate
                part of the Point. The homogenous part is initialized to 1.0.
            */
            B2DHomPoint(double fVal = 0.0)
            :   maTuple(fVal),
                mfW(1.0)
            {}

            /** Create a homogen point

                @param fX
                This parameter is used to initialize the X-coordinate
                of the Point. The homogenous part is initialized to 1.0.

                @param fY
                This parameter is used to initialize the Y-coordinate
                of the Point. The homogenous part is initialized to 1.0.
            */
            B2DHomPoint(double fX, double fY)
            :   maTuple(fX, fY),
                mfW(1.0)
            {}

            /** Create a copy of a 2D Point

                @param rVec
                The 2D point which will be copied. The homogenous part
                is initialized to 1.0.
            */
            B2DHomPoint(const B2DPoint& rVec)
            :   maTuple(rVec),
                mfW(1.0)
            {}

            /** Create a copy of a homogen point

                @param rVec
                The homogen point which will be copied. The homogenous part
                is copied, too.
            */
            B2DHomPoint(const B2DHomPoint& rVec)
            :   maTuple(rVec.maTuple.getX(), rVec.maTuple.getY()),
                mfW(rVec.mfW)
            {}

            ~B2DHomPoint()
            {}

            /** Get a 2D point from this homogenous point

                This method normalizes this homogen point if necessary and
                returns the corresponding 2D point for this homogen point.

                @attention Even when this method is const it may change all
                members of this instance.
            */
            B2DPoint getB2DPoint() const;

            /** Get X-coordinate

                This method normalizes this homogen point if necessary and
                returns the corresponding X-coordinate for this homogen point.

                @attention Even when this method is const it may change all
                members of this instance.
            */
            double getX() const;

            /** Get Y-coordinate

                This method normalizes this homogen point if necessary and
                returns the corresponding Y-coordinate for this homogen point.

                @attention Even when this method is const it may change all
                members of this instance.
            */
            double getY() const;

            /** Set X-coordinate of the homogen point.

                This method sets the X-coordinate of the homogen point. If
                the point does have a homogenous part this is taken into account.

                @param fX
                The to-be-set X-coordinate without homogenous part.
            */
            void setX(double fX);

            /** Set Y-coordinate of the homogen point.

                This method sets the Y-coordinate of the homogen point. If
                the point does have a homogenous part this is taken into account.

                @param fY
                The to-be-set Y-coordinate without homogenous part.
            */
            void setY(double fY);

            // operators
            //////////////////////////////////////////////////////////////////////

            B2DHomPoint& operator+=( const B2DHomPoint& rPnt );

            B2DHomPoint& operator-=( const B2DHomPoint& rPnt );

            B2DHomPoint& operator*=(double t);

            B2DHomPoint& operator*=( const matrix::B2DHomMatrix& rMat );

            B2DHomPoint& operator/=(double t);

            B2DHomPoint& operator-(void);

            sal_Bool operator==( const B2DHomPoint& rPnt ) const;

            sal_Bool operator!=( const B2DHomPoint& rPnt ) const;

            B2DHomPoint& operator=( const B2DHomPoint& rPnt );
        };

        // external operators
        //////////////////////////////////////////////////////////////////////////

        B2DHomPoint min(const B2DHomPoint& rVecA, const B2DHomPoint& rVecB);

        B2DHomPoint max(const B2DHomPoint& rVecA, const B2DHomPoint& rVecB);

        B2DHomPoint abs(const B2DHomPoint& rVec);

        B2DHomPoint interpolate(B2DHomPoint& rOld1, B2DHomPoint& rOld2, double t);

        B2DHomPoint average(B2DHomPoint& rOld1, B2DHomPoint& rOld2);

        B2DHomPoint average(B2DHomPoint& rOld1, B2DHomPoint& rOld2, B2DHomPoint& rOld3);

        B2DHomPoint operator+(const B2DHomPoint& rVecA, const B2DHomPoint& rVecB);

        B2DHomPoint operator-(const B2DHomPoint& rVecA, const B2DHomPoint& rVecB);

        B2DHomPoint operator*(const B2DHomPoint& rVec, double t);

        B2DHomPoint operator*(double t, const B2DHomPoint& rVec);

        B2DHomPoint operator*( const matrix::B2DHomMatrix& rMat, const B2DHomPoint& rPoint );

        B2DHomPoint operator/(const B2DHomPoint& rVec, double t);

        B2DHomPoint operator/(double t, const B2DHomPoint& rVec);
    } // end of namespace point
} // end of namespace basegfx

#endif // _BGFX_POINT_B2DHOMPOINT_HXX