mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-16 00:05:45 -04:00
* MDAL 0.5.90 : support for custom Logger and 1D meshes * [FEATURE] [MESH] Support rendering of 1D meshes, see https://github.com/qgis/QGIS-Enhancement-Proposals/issues/164 1D mesh consist of edges (edge is straight line segment with 2 vertices) and the data that is defined on either vertices or edges. Such data can be loaded by MDAL and rendered as mesh layer in QGIS.
102 lines
2.7 KiB
Plaintext
102 lines
2.7 KiB
Plaintext
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/core/mesh/qgsmeshtracerenderer.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class QgsMeshVectorTraceAnimationGenerator
|
|
{
|
|
%Docstring
|
|
|
|
A wrapper for QgsMeshParticuleTracesField used to render the particles. Available for Python binding
|
|
|
|
.. versionadded:: 3.12
|
|
%End
|
|
|
|
%TypeHeaderCode
|
|
#include "qgsmeshtracerenderer.h"
|
|
%End
|
|
public:
|
|
|
|
QgsMeshVectorTraceAnimationGenerator( QgsMeshLayer *layer, const QgsRenderContext &rendererContext );
|
|
%Docstring
|
|
Constructor to use with Python binding
|
|
%End
|
|
|
|
QgsMeshVectorTraceAnimationGenerator( const QgsMeshVectorTraceAnimationGenerator &other );
|
|
%Docstring
|
|
Copy constructor
|
|
%End
|
|
|
|
~QgsMeshVectorTraceAnimationGenerator();
|
|
|
|
void seedRandomParticles( int count );
|
|
%Docstring
|
|
seeds particles in the vector fields
|
|
%End
|
|
|
|
QImage imageRendered();
|
|
%Docstring
|
|
Moves all the particles using frame per second (fps) to calculate the displacement and return the rendered frame
|
|
%End
|
|
|
|
void setFPS( int FPS );
|
|
%Docstring
|
|
Sets the number of frames per seconds that will be rendered
|
|
%End
|
|
|
|
void setMaxSpeedPixel( int max );
|
|
%Docstring
|
|
Sets the max number of pixels that can be go through by the particles in 1 second
|
|
%End
|
|
|
|
void setParticlesLifeTime( double particleLifeTime );
|
|
%Docstring
|
|
Sets maximum life time of particles in seconds
|
|
%End
|
|
|
|
void setParticlesColor( const QColor &c );
|
|
%Docstring
|
|
Sets colors of particle
|
|
%End
|
|
|
|
void setParticlesSize( double width );
|
|
%Docstring
|
|
Sets particle size in px
|
|
%End
|
|
|
|
void setTailFactor( double fct );
|
|
%Docstring
|
|
Sets the tail factor, used to adjust the length of the tail. 0 : minimum length, >1 increase the tail
|
|
%End
|
|
|
|
void setMinimumTailLength( int l );
|
|
%Docstring
|
|
Sets the minimum tail length
|
|
%End
|
|
|
|
void setTailPersitence( double p );
|
|
%Docstring
|
|
Sets the visual persistence of the tail
|
|
%End
|
|
|
|
};
|
|
|
|
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/core/mesh/qgsmeshtracerenderer.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
|
************************************************************************/
|