mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
29 lines
1.2 KiB
Plaintext
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 *
|
|
************************************************************************/
|