Click or drag to resize

TextureGetAlphaBlendValues Method

If the TextureCombineMode is Blend, then the blending function for alpha is determined by

new alpha = constant + a0*(current alpha) + a1*(texture alpha) + a2*min(current alpha,texture alpha) + a3*max(current alpha,texture alpha)

Namespace:  Rhino.DocObjects
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 5.6
Syntax
public void GetAlphaBlendValues(
	out double constant,
	out double a0,
	out double a1,
	out double a2,
	out double a3
)

Parameters

constant
Type: SystemDouble

[Missing <param name="constant"/> documentation for "M:Rhino.DocObjects.Texture.GetAlphaBlendValues(System.Double@,System.Double@,System.Double@,System.Double@,System.Double@)"]

a0
Type: SystemDouble

[Missing <param name="a0"/> documentation for "M:Rhino.DocObjects.Texture.GetAlphaBlendValues(System.Double@,System.Double@,System.Double@,System.Double@,System.Double@)"]

a1
Type: SystemDouble

[Missing <param name="a1"/> documentation for "M:Rhino.DocObjects.Texture.GetAlphaBlendValues(System.Double@,System.Double@,System.Double@,System.Double@,System.Double@)"]

a2
Type: SystemDouble

[Missing <param name="a2"/> documentation for "M:Rhino.DocObjects.Texture.GetAlphaBlendValues(System.Double@,System.Double@,System.Double@,System.Double@,System.Double@)"]

a3
Type: SystemDouble

[Missing <param name="a3"/> documentation for "M:Rhino.DocObjects.Texture.GetAlphaBlendValues(System.Double@,System.Double@,System.Double@,System.Double@,System.Double@)"]

See Also