Qt3DExtras::QSphereGeometry Class
class Qt3DExtras::QSphereGeometryLa clase QSphereGeometry permite la creación de una esfera en el espacio 3D. Más...
| Cabecera: | #include <Qt3DExtras/QSphereGeometry> |
| CMake: | find_package(Qt6 REQUIRED COMPONENTS 3dextras)target_link_libraries(mytarget PRIVATE Qt6::3dextras) |
| qmake: | QT += 3dextras |
| En QML: | SphereGeometry |
| Hereda: | Qt3DCore::QGeometry |
| Status: | Obsoleto |
Propiedades
|
|
Funciones públicas
| 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() |
Ranuras públicas
| void | setGenerateTangents(bool gen) |
| void | setRadius(float radius) |
| void | setRings(int rings) |
| void | setSlices(int slices) |
Señales
| void | generateTangentsChanged(bool generateTangents) |
| void | radiusChanged(float radius) |
| void | ringsChanged(int rings) |
| void | slicesChanged(int slices) |
Descripción Detallada
La clase QSphereGeometry es más comúnmente usada internamente por QSphereMesh pero también puede ser usada en subclases personalizadas de Qt3DRender::QGeometryRenderer.
Documentación de Propiedades
generateTangents : bool
Mantiene el valor de la bandera de generación automática de vectores tangentes. Los vectores tangentes son ortogonales a los vectores normales.
Funciones de acceso:
| bool | generateTangents() const |
| void | setGenerateTangents(bool gen) |
Señal notificadora:
| void | generateTangentsChanged(bool generateTangents) |
[read-only] indexAttribute : Qt3DCore::QAttribute* const
Contiene el atributo de índice de la geometría.
Funciones de acceso:
| Qt3DCore::QAttribute * | indexAttribute() const |
[read-only] normalAttribute : Qt3DCore::QAttribute* const
Contiene el atributo normal de la geometría.
Funciones de acceso:
| Qt3DCore::QAttribute * | normalAttribute() const |
[read-only] positionAttribute : Qt3DCore::QAttribute* const
Contiene el atributo de posición de la geometría.
Funciones de acceso:
| Qt3DCore::QAttribute * | positionAttribute() const |
radius : float
Mantiene el radio de la esfera.
Funciones de acceso:
| float | radius() const |
| void | setRadius(float radius) |
Señal notificadora:
| void | radiusChanged(float radius) |
rings : int
Contiene el número de anillos de la esfera.
Funciones de acceso:
| int | rings() const |
| void | setRings(int rings) |
Señal de aviso:
| void | ringsChanged(int rings) |
slices : int
Contiene el número de cortes de la esfera.
Funciones de acceso:
| int | slices() const |
| void | setSlices(int slices) |
Señal notificadora:
| void | slicesChanged(int slices) |
[read-only] tangentAttribute : Qt3DCore::QAttribute* const
Contiene el atributo tangente de la geometría.
Funciones de acceso:
| Qt3DCore::QAttribute * | tangentAttribute() const |
[read-only] texCoordAttribute : Qt3DCore::QAttribute* const
Contiene el atributo de coordenadas de la textura de la geometría.
Funciones de acceso:
| Qt3DCore::QAttribute * | texCoordAttribute() const |
Documentación de funciones miembro
[explicit] QSphereGeometry::QSphereGeometry(Qt3DCore::QNode *parent = nullptr)
Construye una nueva QSphereGeometry con parent.
void QSphereGeometry::updateIndices()
Actualiza los índices en función de las propiedades de los anillos y las rodajas.
void QSphereGeometry::updateVertices()
Actualiza los vértices en función de las propiedades de anillos, cortes y radios.
© 2026 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.