QGIS/python/core/mesh/qgsnativemesh.sip.in
Peter Petrik 50422a1165 [FEATURE] QgsMeshLayer part 1: Reading raw mesh
Introducting MDAL, QgsMeshLayer, mesh data providers (mesh_memory, mdal)
to read and visualize raw meshes: vertices and faces. Support dragging
2dm files from browser on canvas to visualize 2dm meshes.
Support for QgsMeshLayer in Python API.
2018-04-19 10:50:33 +02:00

29 lines
1.2 KiB
Plaintext

/************************************************************************
* This file has been generated automatically from *
* *
* src/core/mesh/qgsnativemesh.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
typedef QgsPoint QgsMeshVertex; //xyz coords of vertex
typedef std::vector<int> QgsMeshFace; //list of vertex indexes
struct QgsNativeMesh
{
std::vector<QgsMeshVertex> vertices;
std::vector<QgsMeshFace> faces;
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/mesh/qgsnativemesh.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/