Table of Contents

Class Polar3d

Namespace
HiGeom.Geom
Assembly
HiGeom.dll
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 Vec3d

src

Polar3d(double, double, double)

Ctor.

public Polar3d(double r, double angle_rad, double z)

Parameters

r double

r

angle_rad double

angle_rad

z double

z

Polar3d(BinaryReader)

Ctor by bytes: r = reader.ReadDouble(); angle = reader.ReadDouble(); z = reader.ReadDouble();

public Polar3d(BinaryReader reader)

Parameters

reader BinaryReader

reader

Polar3d(string)

Ctor by string. The format is (r,angle_rad,z).

public Polar3d(string src)

Parameters

src string

src

Fields

angle_rad

Angle in radian.

public double angle_rad

Field Value

double

r

Radius.

public double r

Field Value

double

z

Height.

public double z

Field Value

double

Properties

Angle_deg

Angle in degree.

public double Angle_deg { get; set; }

Property Value

double

Angle_rad

Angle in radian.

public double Angle_rad { get; set; }

Property Value

double

CsvText

Csv text.

public string CsvText { get; set; }

Property Value

string

CsvTitleText

Csv titles text.

public string CsvTitleText { get; }

Property Value

string

IsAllFinite

public bool IsAllFinite { get; }

Property Value

bool

Is r,angle_rad,z all finite.

IsAllNaN

public bool IsAllNaN { get; }

Property Value

bool

is r,angle_rad,z all NaN.

IsAnyNaN

public bool IsAnyNaN { get; }

Property Value

bool

Is any of {r,angle_rad,z} NaN.

NaN

public static Polar3d NaN { get; }

Property Value

Polar3d

Generate Polar3d(double.NaN, double.NaN, double.NaN).

NativeByteSize

public static int NativeByteSize { get; }

Property Value

int

Byte size: sizeof(double) * 3.

R

Radius.

public double R { get; set; }

Property Value

double

StaticCsvTitleText

public static string StaticCsvTitleText { get; }

Property Value

string

Text

public string Text { get; set; }

Property Value

string

Z

Height.

public double Z { get; set; }

Property Value

double

Zero

public static Polar3d Zero { get; }

Property Value

Polar3d

Generate Polar3d(0, 0, 0).

Methods

Dot(Polar3d)

this dot src.

public double Dot(Polar3d src)

Parameters

src Polar3d

src

Returns

double

dotted value

Equals(Polar3d)

public bool Equals(Polar3d other)

Parameters

other Polar3d

Returns

bool

Equals(object)

Determines whether the specified object is equal to the current object.

public override bool Equals(object obj)

Parameters

obj object

The object to compare with the current object.

Returns

bool

true if the specified object is equal to the current object; otherwise, false.

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

a Polar3d

a

b Polar3d

b

alpha double

ratio

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 string

src

Returns

Polar3d

parsed Polar3d

ReadBin(BinaryReader)

public void ReadBin(BinaryReader reader)

Parameters

reader BinaryReader

Set(Polar3d)

Set values by copy.

public Polar3d Set(Polar3d src)

Parameters

src Polar3d

src

Returns

Polar3d

this

Set(double, double, double)

Set values.

public Polar3d Set(double r, double angle_rad, double z)

Parameters

r double

r

angle_rad double

angle_rad

z double

z

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

dst double[]

dst

p int

position from dst

Returns

int
  1. 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 string

format of ToString(string)

Returns

string

Representative string

TryParse(string, out Polar3d)

public static bool TryParse(string src, out Polar3d dst)

Parameters

src string
dst Polar3d

Returns

bool

WriteBin(BinaryWriter)

Output to bytes: writer.Write(r); writer.Write(angle); writer.Write(z);

public void WriteBin(BinaryWriter writer)

Parameters

writer BinaryWriter

writer

Operators

operator +(Polar3d, Polar3d)

Plus.

public static Polar3d operator +(Polar3d a, Polar3d b)

Parameters

a Polar3d

a

b Polar3d

b

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

a Polar3d

a

d double

denominator

Returns

Polar3d

result

operator *(Polar3d, double)

Scale a by s.

public static Polar3d operator *(Polar3d a, double s)

Parameters

a Polar3d

vector

s double

scale

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

a Polar3d

a

b Polar3d

b

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 Polar3d

src

Returns

Polar3d

new Polar3d(-src.r, -src.angle_rad, -src.z)