FICOMPLEX Structure

FreeImage.NET

FICOMPLEX Structure
The FICOMPLEX structure describes a color consisting of a real and an imaginary part. Each part is using 4 bytes of data.

Namespace: FreeImageAPI
Assembly: FreeImageNET (in FreeImageNET.dll) Version: 3.17.0.4 (3.17.0)
Syntax
C#
[SerializableAttribute]
public struct FICOMPLEX : IComparable, IComparable<FICOMPLEX>, 
	IEquatable<FICOMPLEX>

The FICOMPLEX type exposes the following members.

Methods
  NameDescription
Public methodCompareTo(Object)
Compares this instance with a specified Object.
Public methodCompareTo(FICOMPLEX)
Compares this instance with a specified FICOMPLEX object.
Public methodEquals(Object)
Tests whether the specified object is a FICOMPLEX structure and is equivalent to this FICOMPLEX structure.
(Overrides ValueTypeEquals(Object).)
Public methodEquals(FICOMPLEX)
Tests whether the specified FICOMPLEX structure is equivalent to this FICOMPLEX structure.
Public methodGetHashCode
Returns a hash code for this FICOMPLEX structure.
(Overrides ValueTypeGetHashCode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns the fully qualified type name of this instance.
(Inherited from ValueType.)
Top
Operators
  NameDescription
Public operatorStatic memberEquality
Tests whether two specified FICOMPLEX structures are equivalent.
Public operatorStatic memberInequality
Tests whether two specified FICOMPLEX structures are different.
Top
Fields
  NameDescription
Public fieldimag
Imaginary part of the color.
Public fieldreal
Real part of the color.
Top
See Also