pyvista.Property.anisotropy#

property Property.anisotropy[source]#

Return or set the anisotropy coefficient.

This value controls the anisotropy of the material (0.0 means isotropic). This requires physically based rendering.

For further details see PBR Journey Part 2 : Anisotropy model with VTK

Notes

This attribute requires VTK v9.1.0 or newer.

Examples

Set anisotropy to 0.1

>>> import pyvista as pv
>>> prop = pv.Property()
>>> # requires physically based rendering
>>> prop.interpolation = 'pbr'
>>> prop.anisotropy
0.1