Class Vec2d
Basic 2D point (or vector).
public class Vec2d : IExpandToBox2d, IEquatable<Vec2d>, ICsvRowIo, IEqualityOperators<Vec2d, Vec2d, bool>, IAdditionOperators<Vec2d, Vec2d, Vec2d>, ISubtractionOperators<Vec2d, Vec2d, Vec2d>, IMultiplyOperators<Vec2d, double, Vec2d>, IDivisionOperators<Vec2d, double, Vec2d>, IVec<double>
- Inheritance
-
Vec2d
- Implements
- Inherited Members
- Extension Methods
Constructors
Vec2d()
public Vec2d()
Vec2d(Vec2d)
Copy ctor.
public Vec2d(Vec2d src)
Parameters
src
Vec2dsrc
Vec2d(vec2d)
ctor.
public Vec2d(vec2d src)
Parameters
src
vec2dsrc
Vec2d(double, double)
Ctor.
public Vec2d(double x, double y)
Parameters
Vec2d(BinaryReader)
Ctor by bytes: x = reader.ReadDouble(); y = reader.ReadDouble();
public Vec2d(BinaryReader reader)
Parameters
reader
BinaryReaderreader
Vec2d(int, double, double)
Ctor by direction offset. Direction 0,1 indicate x,y respectively.
public Vec2d(int dir, double a, double b)
Parameters
dir
intdirection offset
a
doublevalue at direction (0+dir)%2
b
doublevalue at direction (1+dir)%2
Vec2d(string)
Ctor by string. The format is (x,y).
public Vec2d(string src)
Parameters
src
stringsrc
Fields
x
Value at x direction.
public double x
Field Value
y
Value at y direction.
public double y
Field Value
Properties
AbsSum
Sum of abs(x) and abs(y).
public double AbsSum { get; }
Property Value
AllOne
Generate vec (1,1).
public static Vec2d AllOne { get; }
Property Value
- Vec2d
(1,1)
AmpPhase
Create AmpPhase instance.
public AmpPhase AmpPhase { get; }
Property Value
Angle_deg
Angle in degree between vec(x,y) and vec(1,0).
public double Angle_deg { get; }
Property Value
Angle_rad
Angle in radian between vec(x,y) and vec(1,0).
public double Angle_rad { get; }
Property Value
CsvText
Csv text.
public string CsvText { get; set; }
Property Value
CsvTitleText
Csv titles text.
public string CsvTitleText { get; }
Property Value
IsAllFinite
public bool IsAllFinite { get; }
Property Value
- bool
Is x,y,z all finite.
IsAllNaN
public bool IsAllNaN { get; }
Property Value
IsAllNegativeInfinity
public bool IsAllNegativeInfinity { get; }
Property Value
- bool
is x,y all NegativeInfinity.
IsAllPositiveInfinity
public bool IsAllPositiveInfinity { get; }
Property Value
- bool
is x,y all PositiveInfinity.
IsAnyFinite
public bool IsAnyFinite { get; }
Property Value
- bool
Is at least one of x,y finite.
IsAnyNaN
Is any member nan.
public bool IsAnyNaN { get; }
Property Value
IsZero
public bool IsZero { get; }
Property Value
- bool
Is zero vector. Which is
x == 0 && y == 0
.
this[int]
public double this[int dir] { get; set; }
Parameters
dir
int
Property Value
Length
Length.
public double Length { get; }
Property Value
LengthSquare
Length square.
public double LengthSquare { get; }
Property Value
MaxAbsDir
Get the direction of the max absolute value.
public int MaxAbsDir { get; }
Property Value
MaxDir
Get the direction of the max value.
public int MaxDir { get; }
Property Value
MaxValue
Get max value from {x,y}.
public double MaxValue { get; }
Property Value
MinValue
Get min value from {x,y}.
public double MinValue { get; }
Property Value
NaN
Generate NAN vec.
public static Vec2d NaN { get; }
Property Value
- Vec2d
(nan,nan)
NativeByteSize
public static int NativeByteSize { get; }
Property Value
- int
Byte size: sizeof(double) * 2.
NegativeInfinity
Generate negative infinity vec.
public static Vec2d NegativeInfinity { get; }
Property Value
- Vec2d
(-inf,-inf)
PositiveInfinity
Generate positive infinity vec.
public static Vec2d PositiveInfinity { get; }
Property Value
- Vec2d
(inf,inf)
Rank
Dimension (i.e. Size) of the Vector.
public int Rank { get; }
Property Value
UnitX
Generate vec (1,0).
public static Vec2d UnitX { get; }
Property Value
- Vec2d
(1,0)
UnitY
Generate vec (0,1).
public static Vec2d UnitY { get; }
Property Value
- Vec2d
(0,1)
X
public double X { get; set; }
Property Value
Y
public double Y { get; set; }
Property Value
Zero
Generate vec (0,0).
public static Vec2d Zero { get; }
Property Value
- Vec2d
(0,0)
Methods
At(int)
Member at direction.
public ref double At(int dir)
Parameters
dir
intdirection
Returns
- double
member
Cross(Vec2d)
Cross.
public double Cross(Vec2d src)
Parameters
src
Vec2dsrc
Returns
- double
cross value
Dot(Vec2d)
Dot.
public double Dot(Vec2d src)
Parameters
src
Vec2dsrc
Returns
- double
dotted value
Equals(Vec2d)
Indicates whether the current object is equal to another object of the same type.
public bool Equals(Vec2d other)
Parameters
other
Vec2dAn object to compare with this object.
Returns
Equals(Vec2d, double)
check equals for each component with tolerance.
public bool Equals(Vec2d other, double toleranceForEachComponent)
Parameters
Returns
- bool
check equals for each component with tolerance.
Equals(object)
Determines whether the specified object is equal to the current object.
public override bool Equals(object obj)
Parameters
obj
objectThe object to compare with the current object.
Returns
ExpandMax(Vec2d)
Find and expand maximum values from src.
public void ExpandMax(Vec2d src)
Parameters
src
Vec2dsrc
ExpandMin(Vec2d)
Find and expand minimum values from src.
public void ExpandMin(Vec2d src)
Parameters
src
Vec2dsrc
ExpandToBox2d(Box2d)
Expand the destinate box. This function is ususally used to compute the bounding box of elements.
public void ExpandToBox2d(Box2d dst)
Parameters
dst
Box2ddestinate box
GenNaN()
Generate NAN vec.
public static Vec2d GenNaN()
Returns
- Vec2d
(nan,nan)
GenNegativeInfinity()
Generate negative infinity vec.
public static Vec2d GenNegativeInfinity()
Returns
- Vec2d
(-inf,-inf)
GenOne()
Generate vec (1,1).
public static Vec2d GenOne()
Returns
- Vec2d
(1,1)
GenPositiveInfinity()
Generate positive infinity vec.
public static Vec2d GenPositiveInfinity()
Returns
- Vec2d
(inf,inf)
GenUnitX()
Generate vec (1,0).
public static Vec2d GenUnitX()
Returns
- Vec2d
(1,0)
GenUnitY()
Generate vec (0,1).
public static Vec2d GenUnitY()
Returns
- Vec2d
(0,1)
GenZero()
Generate vec (0,0).
public static Vec2d GenZero()
Returns
- Vec2d
(0,0)
GetCosWith(Vec2d)
Get cos(angle). The angle is between v and this.
public double GetCosWith(Vec2d v)
Parameters
v
Vec2dv
Returns
- double
cos(angle)
GetHashCode()
Serves as the default hash function.
public override int GetHashCode()
Returns
- int
A hash code for the current object.
Interpolate(Vec2d, Vec2d, double)
Linear interpolate between a and b.
public static Vec2d Interpolate(Vec2d a, Vec2d b, double alpha)
Parameters
Returns
- Vec2d
interpolation
Normalize()
Normalize.
public Vec2d Normalize()
Returns
- Vec2d
this
Set(Vec2d)
Set values by copy.
public Vec2d Set(Vec2d src)
Parameters
src
Vec2dsrc
Returns
- Vec2d
this
Set(vec2d)
Set values by copy.
public Vec2d Set(vec2d src)
Parameters
src
vec2dsrc
Returns
- Vec2d
this
Set(double, double)
Set values.
public Vec2d Set(double x, double y)
Parameters
Returns
- Vec2d
this
Set(double[])
Set values by array.
public Vec2d Set(double[] xy)
Parameters
xy
double[]double[]{x,y}
Returns
- Vec2d
this
Set(int, double, double)
Set values by direction offset. Direction 0,1,2 indicate x,y,z respectively.
public Vec2d Set(int dir, double a, double b)
Parameters
dir
intdirection offset
a
doublevalue at direction (0+dir)%2
b
doublevalue at direction (1+dir)%2
Returns
- Vec2d
this
SetEachNanToZero()
Set NaN to 0 for each value.
public Vec2d SetEachNanToZero()
Returns
- Vec2d
this
SetEachValueAbs()
Set all member to absolute value.
public Vec2d SetEachValueAbs()
Returns
- Vec2d
this
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.
ToString(string)
public string ToString(string format)
Parameters
format
string
Returns
WriteBin(BinaryWriter)
Output to bytes: writer.Write(x); writer.Write(y);
public void WriteBin(BinaryWriter writer)
Parameters
writer
BinaryWriterwriter
Operators
operator +(Vec2d, Vec2d)
Plus.
public static Vec2d operator +(Vec2d a, Vec2d b)
Parameters
Returns
- Vec2d
a+b
operator /(Vec2d, double)
a/d.
public static Vec2d operator /(Vec2d a, double d)
Parameters
Returns
- Vec2d
a/d
operator ==(Vec2d, Vec2d)
Compares two values to determine equality.
public static bool operator ==(Vec2d a, Vec2d b)
Parameters
Returns
operator !=(Vec2d, Vec2d)
Compares two values to determine inequality.
public static bool operator !=(Vec2d a, Vec2d b)
Parameters
Returns
operator *(Vec2d, double)
a*s.
public static Vec2d operator *(Vec2d a, double s)
Parameters
Returns
- Vec2d
a*s
operator -(Vec2d, Vec2d)
a-b.
public static Vec2d operator -(Vec2d a, Vec2d b)
Parameters
Returns
- Vec2d
a-b
operator -(Vec2d)
Negate.
public static Vec2d operator -(Vec2d src)
Parameters
src
Vec2dsrc
Returns
- Vec2d
Negate