QTextureWrapMode Class
class Qt3DRender::QTextureWrapModeDefines the wrap mode a Qt3DRender::QAbstractTexture should apply to a texture. More...
Header: | #include <QTextureWrapMode> |
CMake: | find_package(Qt6 REQUIRED COMPONENTS 3drender) target_link_libraries(mytarget PRIVATE Qt6::3drender) |
qmake: | QT += 3drender |
Inherits: | QObject |
Public Types
enum | WrapMode { Repeat, MirroredRepeat, ClampToEdge, ClampToBorder } |
Properties
Public Functions
QTextureWrapMode(Qt3DRender::QTextureWrapMode::WrapMode x, Qt3DRender::QTextureWrapMode::WrapMode y, Qt3DRender::QTextureWrapMode::WrapMode z, QObject *parent = nullptr) | |
Qt3DRender::QTextureWrapMode::WrapMode | x() const |
Qt3DRender::QTextureWrapMode::WrapMode | y() const |
Qt3DRender::QTextureWrapMode::WrapMode | z() const |
Public Slots
void | setX(Qt3DRender::QTextureWrapMode::WrapMode x) |
void | setY(Qt3DRender::QTextureWrapMode::WrapMode y) |
void | setZ(Qt3DRender::QTextureWrapMode::WrapMode z) |
Signals
void | xChanged(Qt3DRender::QTextureWrapMode::WrapMode x) |
void | yChanged(Qt3DRender::QTextureWrapMode::WrapMode y) |
void | zChanged(Qt3DRender::QTextureWrapMode::WrapMode z) |
Member Type Documentation
enum QTextureWrapMode::WrapMode
Specifies the type of text wrapping. Possible values:
Constant | Value |
---|---|
Qt3DRender::QTextureWrapMode::Repeat | 0x2901 |
Qt3DRender::QTextureWrapMode::MirroredRepeat | 0x8370 |
Qt3DRender::QTextureWrapMode::ClampToEdge | 0x812F |
Qt3DRender::QTextureWrapMode::ClampToBorder | 0x812D |
Property Documentation
x : WrapMode
Returns the wrap mode of the x dimension.
Access functions:
Qt3DRender::QTextureWrapMode::WrapMode | x() const |
void | setX(Qt3DRender::QTextureWrapMode::WrapMode x) |
Notifier signal:
void | xChanged(Qt3DRender::QTextureWrapMode::WrapMode x) |
y : WrapMode
Returns the wrap mode of the y dimension.
Access functions:
Qt3DRender::QTextureWrapMode::WrapMode | y() const |
void | setY(Qt3DRender::QTextureWrapMode::WrapMode y) |
Notifier signal:
void | yChanged(Qt3DRender::QTextureWrapMode::WrapMode y) |
z : WrapMode
Returns the wrap mode of the z dimension.
Access functions:
Qt3DRender::QTextureWrapMode::WrapMode | z() const |
void | setZ(Qt3DRender::QTextureWrapMode::WrapMode z) |
Notifier signal:
void | zChanged(Qt3DRender::QTextureWrapMode::WrapMode z) |
Member Function Documentation
[explicit]
QTextureWrapMode::QTextureWrapMode(Qt3DRender::QTextureWrapMode::WrapMode x, Qt3DRender::QTextureWrapMode::WrapMode y, Qt3DRender::QTextureWrapMode::WrapMode z, QObject *parent = nullptr)
Contrusts a new Qt3DRender::QTextureWrapMode instance with the wrap mode to apply to each dimension x, y z of the texture and parent as parent.
[slot]
void QTextureWrapMode::setX(Qt3DRender::QTextureWrapMode::WrapMode x)
Sets the wrap mode of the x dimension to x.
Note: Setter function for property x.
See also x().
[slot]
void QTextureWrapMode::setY(Qt3DRender::QTextureWrapMode::WrapMode y)
Sets the wrap mode of the y dimension to y.
Note: this is not available on 1D textures.
Note: Setter function for property y.
See also y().
[slot]
void QTextureWrapMode::setZ(Qt3DRender::QTextureWrapMode::WrapMode z)
Sets the wrap mode of the z dimension to z.
Note: this is only available on 3D textures.
Note: Setter function for property z.
See also z().
© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.