1 /* Copyright Jukka Jyl�nki
2
3    Licensed under the Apache License, Version 2.0 (the "License");
4    you may not use this file except in compliance with the License.
5    You may obtain a copy of the License at
6
7        http://www.apache.org/licenses/LICENSE-2.0
8
9    Unless required by applicable law or agreed to in writing, software
10    distributed under the License is distributed on an "AS IS" BASIS,
11    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12    See the License for the specific language governing permissions and
13    limitations under the License. */
14
15 /** @file Complex.h
16         @author Jukka Jyl�nki
17         @brief */
18 #pragma once
19
20 MATH_BEGIN_NAMESPACE
21
22 /// A complex value of form a + bi.
23 class Complex
24 {
25 public:
26         /// The default ctor does not initialize the Circle to any value.
27         Complex() {}
28         Complex(float real, float imaginary);
29
30         float r;
31         float i;
32
33         Complex Conjugate() const;
34         void Normalize();
35         Complex Normalized() const;
36         float Length() const;
37         float LengthSq() const;
38
39         Complex operator +(float real) const;
40         Complex operator +(const Complex &c) const;
41         Complex operator -(float real) const;
42         Complex operator -(const Complex &c) const;
43         Complex operator *(float real) const;
44         Complex operator *(const Complex &c) const;
45         Complex operator /(float real) const;
46         Complex operator /(const Complex &c) const;
47
48         Complex &operator +=(float real);
49         Complex &operator +=(const Complex &c);
50         Complex &operator -=(float real);
51         Complex &operator -=(const Complex &c);
52         Complex &operator *=(float real);
53         Complex &operator *=(const Complex &c);
54         Complex &operator /=(float real);
55         Complex &operator /=(const Complex &c);
56
57         static const Complex zero;
58         static const Complex unitOne;
59         static const Complex unitI;
60 };
61
62 #ifdef MATH_QT_INTEROP
63 Q_DECLARE_METATYPE(Complex)
64 Q_DECLARE_METATYPE(Complex*)
65 #endif
66
67 MATH_END_NAMESPACE

Go back to previous page