Table of Contents

Class Bind

Namespace
HiDisp.Disp
Assembly
HiDisp.dll

Runtime rendering data for each iteration in rendering loop. It manipulates geometry transformation, such as moving, rotatingand scaling. It also deal with color and picking. A bind_t object is generated by rendering in the every beginning of each rendering iteration.

public class Bind : IDisposable
Inheritance
Bind
Implements
Inherited Members
Extension Methods

Fields

bind

Internal use.

public bind_t* bind

Field Value

bind_t*

Properties

CanvasHeight

DispEngine height.

public int CanvasHeight { get; }

Property Value

int

CanvasWidth

DispEngine width.

public int CanvasWidth { get; }

Property Value

int

IsPickingMode

Is current display loop in pick mode.

public bool IsPickingMode { get; }

Property Value

bool

ModelMatStack

Stack-based Model matrix in MVP convention.

public MatStack ModelMatStack { get; }

Property Value

MatStack

PickID

ID of picking event.

public int PickID { get; set; }

Property Value

int

PixelProjMat

Pixel part of Projection matrix in MVP convention.

public Mat4d PixelProjMat { get; }

Property Value

Mat4d
See Also

PixelWidthOnModel

Pixel width on model layer.

public double PixelWidthOnModel { get; }

Property Value

double

ProjMat

Projection matrix in MVP convention. Projection matrix = ScaleProjMat * PixelProjMat.

public Mat4d ProjMat { get; }

Property Value

Mat4d

RGB

External RGB Color for the Drawing which the KeyStamp does not contains C.

public Vec3d RGB { get; set; }

Property Value

Vec3d

Reciprocal_vs_scale

Cached reciprocal value of the scale of ViewMat * ScaleProjMat.

public double Reciprocal_vs_scale { get; }

Property Value

double

ScaleProjMat

Scale part of Projection matrix in MVP convention.

public Mat4d ScaleProjMat { get; }

Property Value

Mat4d
See Also

SparkleRate

public float SparkleRate { get; set; }

Property Value

float

ViewMat

View matrix in MVP convention.

public Mat4d ViewMat { get; }

Property Value

Mat4d

Methods

Dispose()

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

public void Dispose()

Dispose(bool)

protected virtual void Dispose(bool disposing)

Parameters

disposing bool

~Bind()

protected ~Bind()

GetMvpBoxRelation(Vec3d, double)

get relation between mvpBox and a AABB (bounding with a sphere)

public MvpBoxRelation GetMvpBoxRelation(Vec3d center, double r)

Parameters

center Vec3d

center

r double

radius

Returns

MvpBoxRelation

0 if no overlap; 1 if partial overlap; 2 if B in A

PopColor()

Pop the color after using PushColor() and etc..

public void PopColor()
See Also

PopLineWidth()

Pop the line width from the stack. And then set the poped line width to current line width.

public void PopLineWidth()

PopPointSize()

Pop the stored point size from the stack. And then set the stored point size to current point size.

public void PopPointSize()
See Also

PushColor()

Push current color to stack. After PopColor(), the pushed color will be restored.

public void PushColor()

PushColorByHsl(Vec3d)

public void PushColorByHsl(Vec3d hsl)

Parameters

hsl Vec3d

PushColorByHsl(double, double, double)

public void PushColorByHsl(double hue, double saturation, double light)

Parameters

hue double
saturation double
light double

PushColorByHslOffset(Vec3d)

public void PushColorByHslOffset(Vec3d hslOffset)

Parameters

hslOffset Vec3d

PushColorByHslOffset(double, double, double)

public void PushColorByHslOffset(double hueOffset, double saturationOffset, double lightOffset)

Parameters

hueOffset double
saturationOffset double
lightOffset double

PushColorByRgb(Vec3d)

Push current color to stack then set the color to given rgb. After PopColor(), the pushed color will be restored. If rgb is null, ignore the rgb and push.

public void PushColorByRgb(Vec3d rgb)

Parameters

rgb Vec3d

RGB color

PushColorByRgb(double, double, double)

public void PushColorByRgb(double r, double g, double b)

Parameters

r double
g double
b double

PushCoveringPixelMode()

Push covering-pixel-mode matrix to ModelMatStack to make the display in pixel scale. Call ModelMatStack.Pop() to end the mode.

public void PushCoveringPixelMode()

PushLineWidth()

Push current line width into stack.

public void PushLineWidth()
See Also

PushLineWidth(double)

Push current line width into stack. And then set lineWidth to the current line width.

public void PushLineWidth(double lineWidth)

Parameters

lineWidth double

line width

See Also

PushNoRotationPixelMode()

Push no-rotation-pixel-mode matrix to ModelMatStack to make the display in pixel scale. Call ModelMatStack.Pop() to end the mode.

public void PushNoRotationPixelMode()

PushPixelMode()

Push pixel mode matrix to ModelMatStack to make the display in pixel scale.

Call ModelMatStack.Pop() to end the mode.

public void PushPixelMode()

PushPointSize()

Push current point size to the stack.

public void PushPointSize()
See Also

PushPointSize(double)

Push current point size to the stack. And then set the pointSize to current point size.

public void PushPointSize(double pointSize)

Parameters

pointSize double

point size

See Also

PushPointSize(float)

Push current point size to the stack. And then set the pointSize to current point size.

public void PushPointSize(float pointSize)

Parameters

pointSize float

point size

See Also

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.