A 3D extruded Text mesh. 更多...
| 头: |
#include <Qt3DExtras/QExtrudedTextMesh>
|
| CMake: |
find_package(Qt6 REQUIRED COMPONENTS 3dextras)
target_link_libraries(mytarget PRIVATE Qt6::3dextras)
|
| qmake: |
QT += 3dextras
|
| 在 QML: | ExtrudedTextMesh |
| 继承: | Qt3DRender::QGeometryRenderer |
| 状态: | Deprecated |
| QExtrudedTextMesh (Qt3DCore::QNode * parent = nullptr) | |
| float | depth () const |
| QFont | font () const |
| QString | text () const |
| void | setDepth (float depth ) |
| void | setFont (const QFont & font ) |
| void | setText (const QString & text ) |
| void | depthChanged (float depth ) |
| void | fontChanged (const QFont & font ) |
| void | textChanged (const QString & text ) |
The origin of the mesh is the rear left end of the text's baseline.
Holds the extrusion depth of the text.
访问函数:
| float | depth () const |
| void | setDepth (float depth ) |
通知程序信号:
| void | depthChanged (float depth ) |
Holds the font of the text.
The mesh geometry is normalized by the font's pointSize, so a larger pointSize will result in smoother, rather than larger, text. pixelSize should not be used.
访问函数:
| QFont | font () const |
| void | setFont (const QFont & font ) |
通知程序信号:
| void | fontChanged (const QFont & font ) |
Holds the text used for the mesh.
访问函数:
| QString | text () const |
| void | setText (const QString & text ) |
通知程序信号:
| void | textChanged (const QString & text ) |
[explicit]
QExtrudedTextMesh::
QExtrudedTextMesh
(
Qt3DCore::QNode
*
parent
= nullptr)
Constructs a new QText3DMesh with parent .