1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/tiledscene/qgscesiumutils.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsCesiumUtils
{
%Docstring(signature="appended")
Contains utilities for working with Cesium data.
.. versionadded:: 3.34
%End
%TypeHeaderCode
#include "qgscesiumutils.h"
%End
public:
static QgsBox3D parseRegion( const QVariantList ®ion );
%Docstring
Parses a ``region`` object from a Cesium JSON document to a 3D box.
%End
static QgsOrientedBox3D parseBox( const QVariantList &box );
%Docstring
Parses a ``box`` object from a Cesium JSON document to an oriented
bounding box.
%End
static QgsSphere parseSphere( const QVariantList &sphere );
%Docstring
Parses a ``sphere`` object from a Cesium JSON document.
%End
static QgsSphere transformSphere( const QgsSphere &sphere, const QgsMatrix4x4 &transform );
%Docstring
Applies a ``transform`` to a sphere.
%End
struct B3DMContents
{
QByteArray gltf;
QgsVector3D rtcCenter;
};
static B3DMContents extractGltfFromB3dm( const QByteArray &tileContent );
%Docstring
Extracts GLTF binary data and other contents from the legacy b3dm
(Batched 3D Model) tile format. Returns empty byte array on error.
%End
struct TileContents
{
QByteArray gltf;
QgsVector3D rtcCenter;
};
static TileContents extractGltfFromTileContent( const QByteArray &tileContent );
%Docstring
Parses tile content. Returns empty byte array on error.
.. note::
cmpt, pnts, i3dm tile types are currently not supported
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/tiledscene/qgscesiumutils.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|