QExtrudedTextGeometry Class

class Qt3DExtras ::QExtrudedTextGeometry

The QExtrudedTextGeometry class allows creation of a 3D extruded text in 3D space. 更多...

头: #include <Qt3DExtras/QExtrudedTextGeometry>
CMake: find_package(Qt6 REQUIRED COMPONENTS 3dextras)
target_link_libraries(mytarget PRIVATE Qt6::3dextras)
qmake: QT += 3dextras
实例化: ExtrudedTextGeometry
继承: Qt3DCore::QGeometry

特性

公共函数

QExtrudedTextGeometry (Qt3DCore::QNode * parent = nullptr)
float extrusionLength () const
QFont font () const
Qt3DCore::QAttribute * indexAttribute () const
Qt3DCore::QAttribute * normalAttribute () const
Qt3DCore::QAttribute * positionAttribute () const
QString text () const

公共槽

void setDepth (float extrusionLength )
void setFont (const QFont & font )
void setText (const QString & text )

信号

void depthChanged (float extrusionLength )
void fontChanged (const QFont & font )
void textChanged (const QString & text )

详细描述

The QExtrudedTextGeometry class is most commonly used internally by the QText3DMesh but can also be used in custom Qt3DRender::QGeometryRenderer 子类。

The origin of the geometry is the rear left end of the text's baseline.

特性文档编制

extrusionLength : float

Holds the extrusion length of the text.

访问函数:

float extrusionLength () const
void setDepth (float extrusionLength )

通知程序信号:

void depthChanged (float extrusionLength )

font : QFont

Holds the font of the text.

The 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 )

[read-only] indexAttribute : Qt3DCore::QAttribute * const

Holds the geometry index attribute.

访问函数:

Qt3DCore::QAttribute * indexAttribute () const

[read-only] normalAttribute : Qt3DCore::QAttribute * const

Holds the geometry normal attribute.

访问函数:

Qt3DCore::QAttribute * normalAttribute () const

[read-only] positionAttribute : Qt3DCore::QAttribute * const

Holds the geometry position attribute.

访问函数:

Qt3DCore::QAttribute * positionAttribute () const

text : QString

Holds the text used for the mesh.

访问函数:

QString text () const
void setText (const QString & text )

通知程序信号:

void textChanged (const QString & text )

成员函数文档编制

[explicit] QExtrudedTextGeometry:: QExtrudedTextGeometry ( Qt3DCore::QNode * parent = nullptr)

Constructs a new QExtrudedTextGeometry with parent .