mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
113 lines
3.0 KiB
Plaintext
113 lines
3.0 KiB
Plaintext
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/3d/materials/qgsmetalroughmaterialsettings.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.py again *
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
class QgsMetalRoughMaterialSettings : QgsAbstractMaterialSettings
|
|
{
|
|
%Docstring(signature="appended")
|
|
A PBR metal rough shading material used for rendering.
|
|
|
|
.. warning::
|
|
|
|
This is not considered stable API, and may change in future QGIS releases. It is
|
|
exposed to the Python bindings as a tech preview only.
|
|
|
|
.. versionadded:: 3.36
|
|
%End
|
|
|
|
%TypeHeaderCode
|
|
#include "qgsmetalroughmaterialsettings.h"
|
|
%End
|
|
public:
|
|
QgsMetalRoughMaterialSettings();
|
|
|
|
virtual QString type() const;
|
|
|
|
|
|
static bool supportsTechnique( QgsMaterialSettingsRenderingTechnique technique );
|
|
%Docstring
|
|
Returns ``True`` if the specified ``technique`` is supported by the metal rough material.
|
|
%End
|
|
|
|
static QgsAbstractMaterialSettings *create() /Factory/;
|
|
%Docstring
|
|
Returns a new instance of QgsMetalRoughMaterialSettings.
|
|
%End
|
|
|
|
virtual QgsMetalRoughMaterialSettings *clone() const /Factory/;
|
|
|
|
virtual bool equals( const QgsAbstractMaterialSettings *other ) const;
|
|
|
|
|
|
QColor baseColor() const;
|
|
%Docstring
|
|
Returns the base material color.
|
|
|
|
.. seealso:: :py:func:`setBaseColor`
|
|
%End
|
|
|
|
double metalness() const;
|
|
%Docstring
|
|
Returns the material's metalness.
|
|
|
|
.. seealso:: :py:func:`setMetalness`
|
|
%End
|
|
|
|
double roughness() const;
|
|
%Docstring
|
|
Returns the material's roughness.
|
|
|
|
.. seealso:: :py:func:`setRoughness`
|
|
%End
|
|
|
|
virtual QMap<QString, QString> toExportParameters() const;
|
|
|
|
|
|
void setBaseColor( const QColor &color );
|
|
%Docstring
|
|
Sets the base material ``color``.
|
|
|
|
.. seealso:: :py:func:`baseColor`
|
|
%End
|
|
|
|
void setMetalness( double metalness );
|
|
%Docstring
|
|
Returns the material's ``metalness``.
|
|
|
|
.. seealso:: :py:func:`metalness`
|
|
%End
|
|
|
|
void setRoughness( double roughness );
|
|
%Docstring
|
|
Returns the material's ``roughness``.
|
|
|
|
.. seealso:: :py:func:`roughness`
|
|
%End
|
|
|
|
virtual void readXml( const QDomElement &elem, const QgsReadWriteContext &context );
|
|
|
|
virtual void writeXml( QDomElement &elem, const QgsReadWriteContext &context ) const;
|
|
|
|
|
|
|
|
bool operator==( const QgsMetalRoughMaterialSettings &other ) const;
|
|
|
|
};
|
|
|
|
|
|
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/3d/materials/qgsmetalroughmaterialsettings.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.py again *
|
|
************************************************************************/
|