QGoochMaterial

PyQt5.Qt3DExtras.QGoochMaterial

Inherits from QMaterial.

Description

The QGoochMaterial provides a material that implements the Gooch shading model, popular in CAD and CAM applications.

The Gooch lighting model uses both color and brightness to help show the curvature of 3D surfaces. This is often better than models such as Phong that rely purely upon changes in brightness. In situations such as in CAD and CAM applications where photorealism is not a goal, the Gooch shading model in conjunction with some kind of silhouette edge inking is a popular solution.

The Gooch lighting model is explained fully in the original Gooch paper. The Gooch model mixes a diffuse object color with a user-provided cool color and warm color to produce the end points of a color ramp that is used to shade the object based upon the cosine of the angle between the vector from the fragment to the light source and the fragment鈥檚 normal vector. Optionally, a specular highlight can be added on top. The relative contributions to the cool and warm colors by the diffuse color are controlled by the alpha and beta properties respecitvely.

This material uses an effect with a single render pass approach and performs per fragment lighting. Techniques are provided for OpenGL 2, OpenGL 3 or above as well as OpenGL ES 2.

Methods

__init__(parent: QNode = None)

Constructs a new QGoochMaterial instance with parent object parent.


alpha() → float

See also

setAlpha().


beta() → float

See also

setBeta().


cool() → QColor

See also

setCool().


diffuse() → QColor

See also

setDiffuse().


setAlpha(float)

See also

alpha().


setBeta(float)

See also

beta().


setCool(Union[QColor, GlobalColor])

See also

cool().


setDiffuse(Union[QColor, GlobalColor])

See also

diffuse().


setShininess(float)

See also

shininess().


setSpecular(Union[QColor, GlobalColor])

See also

specular().


setWarm(Union[QColor, GlobalColor])

See also

warm().


shininess() → float

See also

setShininess().


specular() → QColor

See also

setSpecular().


warm() → QColor

See also

setWarm().

Signals

alphaChanged(float)

TODO


betaChanged(float)

TODO


coolChanged(Union[QColor, GlobalColor])

TODO


diffuseChanged(Union[QColor, GlobalColor])

TODO


shininessChanged(float)

TODO


specularChanged(Union[QColor, GlobalColor])

TODO


warmChanged(Union[QColor, GlobalColor])

TODO