File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
python/core/auto_generated/mesh Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -692,14 +692,14 @@ Sets new renderer settings
692
692
%Docstring
693
693
Returns whether ``groupIndex`` has existing scalar settings
694
694
695
- .. versionadded:: 3.30.1
695
+ .. versionadded:: 3.30.2
696
696
%End
697
697
698
698
bool removeScalarSettings( int groupIndex );
699
699
%Docstring
700
700
Removes scalar settings with ``groupIndex``
701
701
702
- .. versionadded:: 3.30.1
702
+ .. versionadded:: 3.30.2
703
703
%End
704
704
705
705
QgsMeshRendererVectorSettings vectorSettings( int groupIndex ) const;
@@ -715,14 +715,14 @@ Sets new renderer settings
715
715
%Docstring
716
716
Returns whether ``groupIndex`` has existing vector settings
717
717
718
- .. versionadded:: 3.30.1
718
+ .. versionadded:: 3.30.2
719
719
%End
720
720
721
721
bool removeVectorSettings( int groupIndex );
722
722
%Docstring
723
723
Removes vector settings for ``groupIndex``
724
724
725
- .. versionadded:: 3.30.1
725
+ .. versionadded:: 3.30.2
726
726
%End
727
727
728
728
QgsMesh3dAveragingMethod *averagingMethod() const;
Original file line number Diff line number Diff line change @@ -625,13 +625,13 @@ class CORE_EXPORT QgsMeshRendererSettings
625
625
626
626
/* *
627
627
* Returns whether \a groupIndex has existing scalar settings
628
- * \since QGIS 3.30.1
628
+ * \since QGIS 3.30.2
629
629
*/
630
630
bool hasScalarSettings ( int groupIndex ) const {return mRendererScalarSettings .contains ( groupIndex );}
631
631
632
632
/* *
633
633
* Removes scalar settings with \a groupIndex
634
- * \since QGIS 3.30.1
634
+ * \since QGIS 3.30.2
635
635
*/
636
636
bool removeScalarSettings ( int groupIndex ) {return mRendererScalarSettings .remove ( groupIndex );}
637
637
@@ -642,13 +642,13 @@ class CORE_EXPORT QgsMeshRendererSettings
642
642
643
643
/* *
644
644
* Returns whether \a groupIndex has existing vector settings
645
- * \since QGIS 3.30.1
645
+ * \since QGIS 3.30.2
646
646
*/
647
647
bool hasVectorSettings ( int groupIndex ) const {return mRendererVectorSettings .contains ( groupIndex );}
648
648
649
649
/* *
650
650
* Removes vector settings for \a groupIndex
651
- * \since QGIS 3.30.1
651
+ * \since QGIS 3.30.2
652
652
*/
653
653
bool removeVectorSettings ( int groupIndex ) {return mRendererVectorSettings .remove ( groupIndex );}
654
654
You can’t perform that action at this time.
0 commit comments