Qt3DExtras::QSphereGeometry Class
class Qt3DExtras::QSphereGeometryQSphereGeometry 类允许在三维空间中创建球体。更多
Header: | #include <Qt3DExtras/QSphereGeometry> |
CMake: | find_package(Qt6 REQUIRED COMPONENTS 3dextras) target_link_libraries(mytarget PRIVATE Qt6::3dextras) |
qmake: | QT += 3dextras |
在 QML 中: | SphereGeometry |
继承: | Qt3DCore::QGeometry |
状态: | 已废弃 |
属性
|
|
公共功能
QSphereGeometry(Qt3DCore::QNode *parent = nullptr) | |
bool | generateTangents() const |
Qt3DCore::QAttribute * | indexAttribute() const |
Qt3DCore::QAttribute * | normalAttribute() const |
Qt3DCore::QAttribute * | positionAttribute() const |
float | radius() const |
int | rings() const |
int | slices() const |
Qt3DCore::QAttribute * | tangentAttribute() const |
Qt3DCore::QAttribute * | texCoordAttribute() const |
void | updateIndices() |
void | updateVertices() |
公共插槽
void | setGenerateTangents(bool gen) |
void | setRadius(float radius) |
void | setRings(int rings) |
void | setSlices(int slices) |
信号
void | generateTangentsChanged(bool generateTangents) |
void | radiusChanged(float radius) |
void | ringsChanged(int rings) |
void | slicesChanged(int slices) |
详细说明
QSphereGeometry 类最常用于QSphereMesh 内部,但也可用于自定义Qt3DRender::QGeometryRenderer 子类。
属性文档
generateTangents : bool
保存自动生成切向量标志的值。切向量与法向量正交。
访问功能
bool | generateTangents() const |
void | setGenerateTangents(bool gen) |
通知信号
void | generateTangentsChanged(bool generateTangents) |
[read-only]
indexAttribute : Qt3DCore::QAttribute* const
保存几何体索引属性。
访问功能:
Qt3DCore::QAttribute * | indexAttribute() const |
[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]
tangentAttribute : Qt3DCore::QAttribute* const
保存几何体切线属性。
访问功能:
Qt3DCore::QAttribute * | tangentAttribute() const |
[read-only]
texCoordAttribute : Qt3DCore::QAttribute* const
保存几何纹理坐标属性。
访问函数:
Qt3DCore::QAttribute * | texCoordAttribute() const |
成员函数文档
[explicit]
QSphereGeometry::QSphereGeometry(Qt3DCore::QNode *parent = nullptr)
构造一个新的 QSphereGeometry,parent 。
void QSphereGeometry::updateIndices()
根据圆环和切片属性更新索引。
void QSphereGeometry::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.