QGeometryView Class

class Qt3DCore::QGeometryView

지오메트리 디테일을 캡슐화합니다. 더 보기...

헤더: #include <QGeometryView>
CMake: find_package(Qt6 REQUIRED COMPONENTS 3DCore)
target_link_libraries(mytarget PRIVATE Qt6::3DCore)
qmake: QT += 3dcore
이후: Qt 6.0
QML에서: GeometryView
상속: Qt3DCore::QNode
상속받는 사람:

Qt3DExtras::QConeGeometryView, Qt3DExtras::QCuboidGeometryView, Qt3DExtras::QCylinderGeometryView, Qt3DExtras::QPlaneGeometryView, Qt3DExtras::QSphereGeometryView, 그리고 Qt3DExtras::QTorusGeometryView

Status: Deprecated

공개 유형

enum PrimitiveType { Points, Lines, LineLoop, LineStrip, Triangles, …, Patches }

속성

공용 기능

QGeometryView(Qt3DCore::QNode *parent = nullptr)
int firstInstance() const
int firstVertex() const
Qt3DCore::QGeometry *geometry() const
int indexBufferByteOffset() const
int indexOffset() const
int instanceCount() const
bool primitiveRestartEnabled() const
Qt3DCore::QGeometryView::PrimitiveType primitiveType() const
int restartIndexValue() const
int vertexCount() const
int verticesPerPatch() const

공용 슬롯

void setFirstInstance(int firstInstance)
void setFirstVertex(int firstVertex)
void setGeometry(Qt3DCore::QGeometry *geometry)
void setIndexBufferByteOffset(int offset)
void setIndexOffset(int indexOffset)
void setInstanceCount(int instanceCount)
void setPrimitiveRestartEnabled(bool enabled)
void setPrimitiveType(Qt3DCore::QGeometryView::PrimitiveType primitiveType)
void setRestartIndexValue(int index)
void setVertexCount(int vertexCount)
void setVerticesPerPatch(int verticesPerPatch)

신호

void firstInstanceChanged(int firstInstance)
void firstVertexChanged(int firstVertex)
void geometryChanged(Qt3DCore::QGeometry *geometry)
void indexBufferByteOffsetChanged(int offset)
void indexOffsetChanged(int indexOffset)
void instanceCountChanged(int instanceCount)
void primitiveRestartEnabledChanged(bool primitiveRestartEnabled)
void primitiveTypeChanged(Qt3DCore::QGeometryView::PrimitiveType primitiveType)
void restartIndexValueChanged(int restartIndexValue)
void vertexCountChanged(int vertexCount)
void verticesPerPatchChanged(int verticesPerPatch)

상세 설명

GeometryView 에는 지오메트리를 처리하는 데 필요한 모든 정보가 들어 있습니다. 지오메트리에는 지오메트리 데이터의 좌표가 저장되며, GeometryView 는 해당 데이터를 해석하는 방법을 지정합니다.

멤버 유형 문서

enum QGeometryView::PrimitiveType

프리미티브의 유형입니다.

Constant설명
Qt3DCore::QGeometryView::Points0x0000점 목록
Qt3DCore::QGeometryView::Lines0x0001선 목록
Qt3DCore::QGeometryView::LineLoop0x0002루프를 형성하는 끝에서 연결된 선의 연결된 그룹
Qt3DCore::QGeometryView::LineStrip0x0003연결된 선의 그룹
Qt3DCore::QGeometryView::Triangles0x0004삼각형 목록
Qt3DCore::QGeometryView::TriangleStrip0x0005연결된 삼각형 목록
Qt3DCore::QGeometryView::TriangleFan0x0006모든 트라이앵글이 첫 번째 버텍스를 공유하는 연결된 트라이앵글의 목록입니다.
Qt3DCore::QGeometryView::LinesAdjacency0x000A지오메트리 셰이더가 선 목록에서 인접한 선에 액세스할 수 있도록 허용합니다.
Qt3DCore::QGeometryView::TrianglesAdjacency0x000C지오메트리 셰이더가 트라이앵글 목록에서 인접한 트라이앵글에 액세스할 수 있도록 허용합니다.
Qt3DCore::QGeometryView::LineStripAdjacency0x000B지오메트리 셰이더가 선 스트립에서 인접한 선에 액세스할 수 있도록 허용합니다.
Qt3DCore::QGeometryView::TriangleStripAdjacency0x000D지오메트리 셰이더가 삼각형 스트립에서 인접한 삼각형에 액세스할 수 있도록 허용합니다.
Qt3DCore::QGeometryView::Patches0x000E패치가 임의의 수의 버텍스로 구성된 테셀레이션 셰이더에서 허용되는 프리미티브 유형만 허용됩니다.

프로퍼티 문서

firstInstance : int

기본 인스턴스를 보유합니다.

함수에 액세스합니다:

int firstInstance() const
void setFirstInstance(int firstInstance)

알림 신호:

void firstInstanceChanged(int firstInstance)

firstVertex : int

베이스 버텍스를 보유합니다.

함수에 액세스합니다:

int firstVertex() const
void setFirstVertex(int firstVertex)

알림 신호:

void firstVertexChanged(int firstVertex)

geometry : Qt3DCore::QGeometry*

지오메트리를 보유합니다.

함수에 액세스합니다:

Qt3DCore::QGeometry *geometry() const
void setGeometry(Qt3DCore::QGeometry *geometry)

알림 신호:

void geometryChanged(Qt3DCore::QGeometry *geometry)

indexBufferByteOffset : int

인덱스 버퍼에 바이트 오프셋을 보관합니다.

함수에 액세스합니다:

int indexBufferByteOffset() const
void setIndexBufferByteOffset(int offset)

알림 신호:

void indexBufferByteOffsetChanged(int offset)

indexOffset : int

베이스 버텍스를 보유합니다.

함수에 액세스합니다:

int indexOffset() const
void setIndexOffset(int indexOffset)

알림 신호:

void indexOffsetChanged(int indexOffset)

instanceCount : int

인스턴스 수를 보유합니다.

함수에 액세스합니다:

int instanceCount() const
void setInstanceCount(int instanceCount)

알림 신호:

void instanceCountChanged(int instanceCount)

primitiveRestartEnabled : bool

원시 재시작 플래그를 보유합니다.

기능에 액세스합니다:

bool primitiveRestartEnabled() const
void setPrimitiveRestartEnabled(bool enabled)

알림 신호:

void primitiveRestartEnabledChanged(bool primitiveRestartEnabled)

primitiveType : PrimitiveType

원시 유형을 보유합니다.

기능에 액세스합니다:

Qt3DCore::QGeometryView::PrimitiveType primitiveType() const
void setPrimitiveType(Qt3DCore::QGeometryView::PrimitiveType primitiveType)

알림 신호:

void primitiveTypeChanged(Qt3DCore::QGeometryView::PrimitiveType primitiveType)

restartIndexValue : int

재시작 인덱스를 보유합니다.

기능에 액세스합니다:

int restartIndexValue() const
void setRestartIndexValue(int index)

알림 신호:

void restartIndexValueChanged(int restartIndexValue)

vertexCount : int

원시 개수를 보유합니다.

함수에 액세스합니다:

int vertexCount() const
void setVertexCount(int vertexCount)

알림 신호:

void vertexCountChanged(int vertexCount)

verticesPerPatch : int

패치당 정점을 보유합니다.

액세스 함수:

int verticesPerPatch() const
void setVerticesPerPatch(int verticesPerPatch)

알림 신호:

void verticesPerPatchChanged(int verticesPerPatch)

멤버 함수 문서

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

parent 를 사용하여 새 QGeometryView를 구축합니다.

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