Qt3DExtras::QConeGeometry Class
class Qt3DExtras::QConeGeometryQConeGeometry 类允许在三维空间中创建一个圆锥体。更多
Header: | #include <Qt3DExtras/QConeGeometry> |
CMake: | find_package(Qt6 REQUIRED COMPONENTS 3dextras) target_link_libraries(mytarget PRIVATE Qt6::3dextras) |
qmake: | QT += 3dextras |
在 QML 中: | ConeGeometry |
继承: | Qt3DCore::QGeometry |
状态: | 已废弃 |
属性
|
|
公共功能
float | bottomRadius() const |
bool | hasBottomEndcap() const |
bool | hasTopEndcap() const |
Qt3DCore::QAttribute * | indexAttribute() const |
float | length() const |
Qt3DCore::QAttribute * | normalAttribute() const |
Qt3DCore::QAttribute * | positionAttribute() const |
int | rings() const |
int | slices() const |
Qt3DCore::QAttribute * | texCoordAttribute() const |
float | topRadius() const |
void | updateIndices() |
void | updateVertices() |
公共插槽
void | setBottomRadius(float bottomRadius) |
void | setHasBottomEndcap(bool hasBottomEndcap) |
void | setHasTopEndcap(bool hasTopEndcap) |
void | setLength(float length) |
void | setRings(int rings) |
void | setSlices(int slices) |
void | setTopRadius(float topRadius) |
信号
void | bottomRadiusChanged(float bottomRadius) |
void | hasBottomEndcapChanged(bool hasBottomEndcap) |
void | hasTopEndcapChanged(bool hasTopEndcap) |
void | lengthChanged(float length) |
void | ringsChanged(int rings) |
void | slicesChanged(int slices) |
void | topRadiusChanged(float topRadius) |
详细说明
QConeGeometry 类最常用于QConeMesh 内部,但也可用于自定义Qt3DRender::QGeometryRenderer 子类。该类允许创建圆锥和截顶圆锥。
属性文档
bottomRadius : float
保存锥体的底部半径。
访问功能:
float | bottomRadius() const |
void | setBottomRadius(float bottomRadius) |
通知信号:
void | bottomRadiusChanged(float bottomRadius) |
hasBottomEndcap : bool
确定锥底是封盖还是开放。
访问功能:
bool | hasBottomEndcap() const |
void | setHasBottomEndcap(bool hasBottomEndcap) |
提示信号:
void | hasBottomEndcapChanged(bool hasBottomEndcap) |
hasTopEndcap : bool
确定锥顶是否封盖或打开。
访问功能:
bool | hasTopEndcap() const |
void | setHasTopEndcap(bool hasTopEndcap) |
提示信号:
void | hasTopEndcapChanged(bool hasTopEndcap) |
[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 |
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 |
topRadius : float
保存锥体的顶部半径。
访问功能:
float | topRadius() const |
void | setTopRadius(float topRadius) |
通知信号:
void | topRadiusChanged(float topRadius) |
© 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.