Class Bind
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
Properties
CanvasHeight
DispEngine height.
public int CanvasHeight { get; }
Property Value
CanvasWidth
DispEngine width.
public int CanvasWidth { get; }
Property Value
IsPickingMode
Is current display loop in pick mode.
public bool IsPickingMode { get; }
Property Value
ModelMatStack
Stack-based Model matrix in MVP convention.
public MatStack ModelMatStack { get; }
Property Value
PickID
ID of picking event.
public int PickID { get; set; }
Property Value
PixelProjMat
Pixel part of Projection matrix in MVP convention.
public Mat4d PixelProjMat { get; }
Property Value
- See Also
PixelWidthOnModel
Pixel width on model layer.
public double PixelWidthOnModel { get; }
Property Value
ProjMat
Projection matrix in MVP convention. Projection matrix = ScaleProjMat * PixelProjMat.
public Mat4d ProjMat { get; }
Property Value
RGB
public Vec3d RGB { get; set; }
Property Value
Reciprocal_vs_scale
Cached reciprocal value of the scale of ViewMat * ScaleProjMat.
public double Reciprocal_vs_scale { get; }
Property Value
ScaleProjMat
Scale part of Projection matrix in MVP convention.
public Mat4d ScaleProjMat { get; }
Property Value
- See Also
SparkleRate
public float SparkleRate { get; set; }
Property Value
ViewMat
View matrix in MVP convention.
public Mat4d ViewMat { get; }
Property Value
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
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
PushColorByHslOffset(Vec3d)
public void PushColorByHslOffset(Vec3d hslOffset)
Parameters
hslOffset
Vec3d
PushColorByHslOffset(double, double, double)
public void PushColorByHslOffset(double hueOffset, double saturationOffset, double lightOffset)
Parameters
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
Vec3dRGB color
PushColorByRgb(double, double, double)
public void PushColorByRgb(double r, double g, double b)
Parameters
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
doubleline 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
doublepoint 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
floatpoint 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.