Table of Contents

Class Tri3d

Namespace
HiGeom.Geom
Assembly
HiGeom.dll

Basic 3D Triangle.

public class Tri3d : ITri3d, IFlat3d, IExpandToBox3d, IEquatable<Tri3d>, IBinaryIo, IWriteBin
Inheritance
Tri3d
Implements
Inherited Members
Extension Methods

Constructors

Tri3d(ITri3d)

public Tri3d(ITri3d t)

Parameters

t ITri3d

Tri3d(ITri3d, Mat4d)

public Tri3d(ITri3d t, Mat4d mat)

Parameters

t ITri3d
mat Mat4d

Tri3d(Tri3d, bool)

public Tri3d(Tri3d t, bool useRef = false)

Parameters

t Tri3d
useRef bool

Tri3d(Vec3d, Vec3d, Vec3d)

Ctor.

public Tri3d(Vec3d p0, Vec3d p1, Vec3d p2)

Parameters

p0 Vec3d

apex0

p1 Vec3d

apex1

p2 Vec3d

apex2

Tri3d(Vec3d, Vec3d, Vec3d, Vec3d)

public Tri3d(Vec3d p0, Vec3d p1, Vec3d p2, Vec3d n)

Parameters

p0 Vec3d
p1 Vec3d
p2 Vec3d
n Vec3d

Tri3d(tri3d)

Ctor.

public Tri3d(tri3d src)

Parameters

src tri3d

src

Tri3d(bool)

Ctor.

public Tri3d(bool initAllMemberToNull = false)

Parameters

initAllMemberToNull bool

If true, the three apexes and normal are null; otherwise, they are initialized by the default constructor of Vec3d.

Tri3d(BinaryReader)

public Tri3d(BinaryReader reader)

Parameters

reader BinaryReader

Fields

n

normal vector of this triangle.

public Vec3d n

Field Value

Vec3d

ps

Points. Three apexs.

public Vec3d[] ps

Field Value

Vec3d[]

Properties

Area

public double Area { get; }

Property Value

double

NativeByteSize

Native byte size.

public static int NativeByteSize { get; }

Property Value

int

Methods

Equals(Tri3d)

Indicates whether the current object is equal to another object of the same type.

public bool Equals(Tri3d other)

Parameters

other Tri3d

An object to compare with this object.

Returns

bool

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

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)

Expand the destinate box. This function is ususally used to compute the bounding box of elements.

public void ExpandToBox3d(Box3d dst)

Parameters

dst Box3d

destinate box

GetApex(int)

Get Apex of this triangle.

public Vec3d GetApex(int i)

Parameters

i int

index of the apex

Returns

Vec3d

i'th apex

GetEdgeArrow(int)

public Vec3d GetEdgeArrow(int i)

Parameters

i int

Returns

Vec3d

GetHashCode()

Serves as the default hash function.

public override int GetHashCode()

Returns

int

A hash code for the current object.

GetLocate()

An anchor point of this flat.

public Vec3d GetLocate()

Returns

Vec3d

GetNormal()

The normal of the flat.

public Vec3d GetNormal()

Returns

Vec3d

GetRewind()

public Tri3d GetRewind()

Returns

Tri3d

GetTransform(Mat4d)

public Tri3d GetTransform(Mat4d mat)

Parameters

mat Mat4d

Returns

Tri3d

GetTranslate(Vec3d)

public Tri3d GetTranslate(Vec3d v)

Parameters

v Vec3d

Returns

Tri3d

GetTriSplition(double[], out Tri3d[], out Tri3d[])

Get triangles splition by pointWeights interpolation. negativeTris or positiveTris are null if no triangles generated. If all pointWeights is 0, no triangle generated.

public void GetTriSplition(double[] pointWeights, out Tri3d[] positiveTris, out Tri3d[] negativeTris)

Parameters

pointWeights double[]

weights of points

positiveTris Tri3d[]

triangles with positive or zero weight

negativeTris Tri3d[]

triangles with negative or zero weight

ReBuildNormal()

public Vec3d ReBuildNormal()

Returns

Vec3d

ReadBin(BinaryReader)

Read binary data for initializing.

public void ReadBin(BinaryReader reader)

Parameters

reader BinaryReader

reader

Rewind()

public void Rewind()

Rotate(Vec3d, double)

public Tri3d Rotate(Vec3d axis, double rad)

Parameters

axis Vec3d
rad double

Returns

Tri3d

Set(ITri3d)

public Tri3d Set(ITri3d t)

Parameters

t ITri3d

Returns

Tri3d

Set(ITri3d, Mat4d)

public Tri3d Set(ITri3d t, Mat4d mat)

Parameters

t ITri3d
mat Mat4d

Returns

Tri3d

Set(Tri3d, bool)

public Tri3d Set(Tri3d t, bool useRef = false)

Parameters

t Tri3d
useRef bool

Returns

Tri3d

Set(Vec3d, Vec3d, Vec3d)

Set value.

public Tri3d Set(Vec3d p0, Vec3d p1, Vec3d p2)

Parameters

p0 Vec3d

apex0

p1 Vec3d

apex1

p2 Vec3d

apex2

Returns

Tri3d

this

Set(Vec3d, Vec3d, Vec3d, Vec3d)

public Tri3d Set(Vec3d p0, Vec3d p1, Vec3d p2, Vec3d n)

Parameters

p0 Vec3d
p1 Vec3d
p2 Vec3d
n Vec3d

Returns

Tri3d

SetOrderForward(int)

public void SetOrderForward(int index)

Parameters

index int

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.

Transform(Mat4d)

public Tri3d Transform(Mat4d mat)

Parameters

mat Mat4d

Returns

Tri3d

Translate(Vec3d)

public Tri3d Translate(Vec3d v)

Parameters

v Vec3d

Returns

Tri3d

Translate(double, double, double)

public Tri3d Translate(double x, double y, double z)

Parameters

x double
y double
z double

Returns

Tri3d

WriteBin(BinaryWriter)

Write binary data.

public void WriteBin(BinaryWriter writer)

Parameters

writer BinaryWriter

writer