Class Polar3d
public class Polar3d : IAdditionOperators<Polar3d, Polar3d, Polar3d>, ISubtractionOperators<Polar3d, Polar3d, Polar3d>, IMultiplyOperators<Polar3d, double, Polar3d>, IDivisionOperators<Polar3d, double, Polar3d>, ICsvRowIo
- Inheritance
-
Polar3d
- Implements
- Inherited Members
- Extension Methods
Constructors
Polar3d()
Ctor.
public Polar3d()
Polar3d(Polar3d)
public Polar3d(Polar3d src)
Parameters
src
Polar3d
Polar3d(Vec3d)
Ctor.
public Polar3d(Vec3d src)
Parameters
src
Vec3dsrc
Polar3d(double, double, double)
Ctor.
public Polar3d(double r, double angle_rad, double z)
Parameters
Polar3d(BinaryReader)
Ctor by bytes: r = reader.ReadDouble(); angle = reader.ReadDouble(); z = reader.ReadDouble();
public Polar3d(BinaryReader reader)
Parameters
reader
BinaryReaderreader
Polar3d(string)
Ctor by string. The format is (r,angle_rad,z).
public Polar3d(string src)
Parameters
src
stringsrc
Fields
angle_rad
Angle in radian.
public double angle_rad
Field Value
r
Radius.
public double r
Field Value
z
Height.
public double z
Field Value
Properties
Angle_deg
Angle in degree.
public double Angle_deg { get; set; }
Property Value
Angle_rad
Angle in radian.
public double Angle_rad { get; set; }
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 r,angle_rad,z all finite.
IsAllNaN
public bool IsAllNaN { get; }
Property Value
IsAnyNaN
public bool IsAnyNaN { get; }
Property Value
NaN
public static Polar3d NaN { get; }
Property Value
NativeByteSize
public static int NativeByteSize { get; }
Property Value
- int
Byte size: sizeof(double) * 3.
R
Radius.
public double R { get; set; }
Property Value
StaticCsvTitleText
public static string StaticCsvTitleText { get; }
Property Value
Text
public string Text { get; set; }
Property Value
Z
Height.
public double Z { get; set; }
Property Value
Zero
public static Polar3d Zero { get; }
Property Value
Methods
Dot(Polar3d)
this dot src.
public double Dot(Polar3d src)
Parameters
src
Polar3dsrc
Returns
- double
dotted value
Equals(Polar3d)
public bool Equals(Polar3d other)
Parameters
other
Polar3d
Returns
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
ExpandToBox3d(Box3d)
public void ExpandToBox3d(Box3d dst)
Parameters
dst
Box3d
GetHashCode()
Serves as the default hash function.
public override int GetHashCode()
Returns
- int
A hash code for the current object.
Interpolate(Polar3d, Polar3d, double)
Interpolate from a to b with ratio alpha:(1-alpha).
public static Polar3d Interpolate(Polar3d a, Polar3d b, double alpha)
Parameters
Returns
- Polar3d
a * (1 - alpha) + b * alpha
Parse(string)
If src is not null and not empty string, return Polar3d(string); otherwise return null.
public static Polar3d Parse(string src)
Parameters
src
stringsrc
Returns
ReadBin(BinaryReader)
public void ReadBin(BinaryReader reader)
Parameters
reader
BinaryReader
Set(Polar3d)
Set values by copy.
public Polar3d Set(Polar3d src)
Parameters
src
Polar3dsrc
Returns
- Polar3d
this
Set(double, double, double)
Set values.
public Polar3d Set(double r, double angle_rad, double z)
Parameters
Returns
- Polar3d
this
Set(double[])
Set values by array.
public Polar3d Set(double[] src)
Parameters
src
double[]double[]{r,angle_rad,z}
Returns
- Polar3d
this
SetEachNanToZero()
Set NaN to 0 for each value.
public Polar3d SetEachNanToZero()
Returns
- Polar3d
this
ToArray()
return new double[] { r, angle_rad, z }
public double[] ToArray()
Returns
- double[]
{ r, angle_rad, z }
ToBuf(double[])
Set r,angle_rad,z to the dst array.
public void ToBuf(double[] dst)
Parameters
dst
double[]dst
ToBuf(double[], ref int)
Set r,angle_rad,z to the dst array from postion p and increase p by the pushed number.
public int ToBuf(double[] dst, ref int p)
Parameters
Returns
- int
- Which is pushed number of double
ToString()
To representative string with format:(r,angle_rad,z).
public override string ToString()
Returns
- string
Representative string
ToString(string)
To string with format: (r,angle_rad,z)
public string ToString(string format)
Parameters
format
stringformat of ToString(string)
Returns
- string
Representative string
TryParse(string, out Polar3d)
public static bool TryParse(string src, out Polar3d dst)
Parameters
Returns
WriteBin(BinaryWriter)
Output to bytes: writer.Write(r); writer.Write(angle); writer.Write(z);
public void WriteBin(BinaryWriter writer)
Parameters
writer
BinaryWriterwriter
Operators
operator +(Polar3d, Polar3d)
Plus.
public static Polar3d operator +(Polar3d a, Polar3d b)
Parameters
Returns
- Polar3d
new Polar3d(a.r + b.r, a.angle_rad + b.angle_rad, a.z + b.z)
operator /(Polar3d, double)
Get a new object from a
scaled by 1/d
.
public static Polar3d operator /(Polar3d a, double d)
Parameters
Returns
- Polar3d
result
operator *(Polar3d, double)
Scale a by s.
public static Polar3d operator *(Polar3d a, double s)
Parameters
Returns
- Polar3d
new Polar3d(a.r * s, a.angle_rad * s, a.z * s)
operator -(Polar3d, Polar3d)
Minus.
public static Polar3d operator -(Polar3d a, Polar3d b)
Parameters
Returns
- Polar3d
new Polar3d(a.r - b.r, a.angle_rad - b.angle_rad, a.z - b.z)
operator -(Polar3d)
Get negate vector.
public static Polar3d operator -(Polar3d src)
Parameters
src
Polar3dsrc
Returns
- Polar3d
new Polar3d(-src.r, -src.angle_rad, -src.z)