mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-05 05:06:46 +02:00
20 lines
441 B
QML
20 lines
441 B
QML
import QtQuick 2.15
|
|
import Qt3D.Core 2.15
|
|
|
|
|
|
/**
|
|
* MediaLoaderEntity provides a unified interface for accessing statistics
|
|
* of a 3D media independently from the way it was loaded.
|
|
*/
|
|
Entity {
|
|
property url source
|
|
|
|
/// Number of vertices
|
|
property int vertexCount
|
|
/// Number of faces
|
|
property int faceCount
|
|
/// Number of cameras
|
|
property int cameraCount
|
|
/// Number of textures
|
|
property int textureCount
|
|
}
|