Qt3DExtras::QCylinderGeometry Class

class Qt3DExtras::QCylinderGeometry

QCylinderGeometry 类允许在三维空间中创建一个圆柱体。更多

Header: #include <Qt3DExtras/QCylinderGeometry>
CMake: find_package(Qt6 REQUIRED COMPONENTS 3dextras)
target_link_libraries(mytarget PRIVATE Qt6::3dextras)
qmake: QT += 3dextras
在 QML 中: CylinderGeometry
继承: Qt3DCore::QGeometry
状态:已废弃

属性

公共功能

QCylinderGeometry(Qt3DCore::QNode *parent = nullptr)
Qt3DCore::QAttribute *indexAttribute() const
float length() const
Qt3DCore::QAttribute *normalAttribute() const
Qt3DCore::QAttribute *positionAttribute() const
float radius() const
int rings() const
int slices() const
Qt3DCore::QAttribute *texCoordAttribute() const
void updateIndices()
void updateVertices()

公共插槽

void setLength(float length)
void setRadius(float radius)
void setRings(int rings)
void setSlices(int slices)

信号

void lengthChanged(float length)
void radiusChanged(float radius)
void ringsChanged(int rings)
void slicesChanged(int slices)

详细说明

QCylinderGeometry 类最常用于QCylinderMesh 内部,但也可用于自定义Qt3DRender::QGeometryRenderer 子类。

属性文档

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

保存几何体索引属性。

访问功能:

Qt3DCore::QAttribute *indexAttribute() const

length : float

保持圆柱体的长度。

访问功能:

float length() const
void setLength(float length)

提示信号:

void lengthChanged(float length)

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

保存几何法线属性。

访问功能:

Qt3DCore::QAttribute *normalAttribute() const

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

保存几何体位置属性。

访问功能:

Qt3DCore::QAttribute *positionAttribute() const

radius : float

保存圆柱体的半径。

访问功能:

float radius() const
void setRadius(float radius)

通知信号:

void radiusChanged(float radius)

rings : int

保存圆筒中的环数。

访问功能:

int rings() const
void setRings(int rings)

通知信号:

void ringsChanged(int rings)

slices : int

保存圆柱体中的切片数。

访问功能

int slices() const
void setSlices(int slices)

通知信号:

void slicesChanged(int slices)

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

保存几何纹理坐标属性。

访问函数:

Qt3DCore::QAttribute *texCoordAttribute() const

成员函数文档

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

parent 构建一个新的QCylinderMesh

void QCylinderGeometry::updateIndices()

根据圆环、切片和长度属性更新索引。

void QCylinderGeometry::updateVertices()

根据环、切片和长度属性更新顶点。

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