QTextureWrapMode Class

(Qt3DRender::QTextureWrapMode)

Defines the wrap mode a Qt3DRender::QAbstractTexture should apply to a texture. More...

Header: #include <QTextureWrapMode>
qmake: QT += 3drender
Since: Qt 5.5
Inherits: QObject

Public Types

enum WrapMode { Repeat, MirroredRepeat, ClampToEdge, ClampToBorder }

Properties

  • x : WrapMode
  • y : WrapMode
  • z : WrapMode
  • 1 property inherited from QObject

Public Functions

QTextureWrapMode(Qt3DRender::QTextureWrapMode::WrapMode wrapMode = ClampToEdge, QObject *parent = nullptr)
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
  • 34 public functions inherited from QObject

Public Slots

void setX(Qt3DRender::QTextureWrapMode::WrapMode x)
void setY(Qt3DRender::QTextureWrapMode::WrapMode y)
void setZ(Qt3DRender::QTextureWrapMode::WrapMode z)
  • 1 public slot inherited from QObject

Signals

void xChanged(Qt3DRender::QTextureWrapMode::WrapMode x)
void yChanged(Qt3DRender::QTextureWrapMode::WrapMode y)
void zChanged(Qt3DRender::QTextureWrapMode::WrapMode z)

Additional Inherited Members

  • 1 public variable inherited from QObject
  • 10 static public members inherited from QObject
  • 9 protected functions inherited from QObject
  • 2 protected variables inherited from QObject

Detailed Description

Defines the wrap mode a Qt3DRender::QAbstractTexture should apply to a texture.

Member Type Documentation

enum QTextureWrapMode::WrapMode

Specifies the type of text wrapping. Possible values:

ConstantValue
Qt3DRender::QTextureWrapMode::Repeat0x2901
Qt3DRender::QTextureWrapMode::MirroredRepeat0x8370
Qt3DRender::QTextureWrapMode::ClampToEdge0x812F
Qt3DRender::QTextureWrapMode::ClampToBorder0x812D

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

QTextureWrapMode::QTextureWrapMode(Qt3DRender::QTextureWrapMode::WrapMode wrapMode = ClampToEdge, QObject *parent = nullptr)

Default constructs an instance of QTextureWrapMode.

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().

© 2018 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.