Skip to content

Commit ba4a9b1

Browse files
Merge pull request #19 from LIHPC-Computational-Geometry/v5.16.0-dev
Version 5.16.0. Methods vtkTrihedron::Get*AxisLabelActor2D ( ).
2 parents d30f6b9 + 592410c commit ba4a9b1

File tree

5 files changed

+26
-2
lines changed

5 files changed

+26
-2
lines changed

cmake/version.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44

55
set (VTK_CONTRIB_MAJOR_VERSION "5")
6-
set (VTK_CONTRIB_MINOR_VERSION "15")
6+
set (VTK_CONTRIB_MINOR_VERSION "16")
77
set (VTK_CONTRIB_RELEASE_VERSION "0")
88
set (VTK_CONTRIB_VERSION ${VTK_CONTRIB_MAJOR_VERSION}.${VTK_CONTRIB_MINOR_VERSION}.${VTK_CONTRIB_RELEASE_VERSION})
99

src/VtkContrib/public/VtkContrib/vtkEllipsoidWidget.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Widget de saisie d'une ellipsoïde dans l'espace.
33
* @author Charles PIGNEROL, CEA/DAM/DCLC
4-
* @date 09/12/2025
4+
* @date 12/12/2025
55
*/
66

77
#ifndef VTK_ELLIPSOID_WIDGET_H

src/VtkContrib/public/VtkContrib/vtkTrihedron.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,9 @@ class vtkTrihedron : public vtkPropAssembly
159159
vtkActor* GetXAxisLabelActor ( );
160160
vtkActor* GetYAxisLabelActor ( );
161161
vtkActor* GetZAxisLabelActor ( );
162+
vtkActor2D* GetXAxisLabelActor2D ( );
163+
vtkActor2D* GetYAxisLabelActor2D ( );
164+
vtkActor2D* GetZAxisLabelActor2D ( );
162165

163166
/**
164167
* Couleur associée aux abscisses.

src/VtkContrib/vtkTrihedron.cpp

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -614,4 +614,19 @@ vtkActor* vtkTrihedron::GetZAxisLabelActor ( )
614614
}; // vtkTrihedron::GetZAxisLabelActor
615615

616616

617+
vtkActor2D* vtkTrihedron::GetXAxisLabelActor2D ( )
618+
{
619+
return m_xLabelActor2D;
620+
}; // vtkTrihedron::GetXAxisLabelActor2D
621+
622+
623+
vtkActor2D* vtkTrihedron::GetYAxisLabelActor2D ( )
624+
{
625+
return m_yLabelActor2D;
626+
}; // vtkTrihedron::GetYAxisLabelActor2D
627+
617628

629+
vtkActor2D* vtkTrihedron::GetZAxisLabelActor2D ( )
630+
{
631+
return m_zLabelActor2D;
632+
}; // vtkTrihedron::GetZAxisLabelActor2D

versions.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Version 5.16.0 : 20/01/26
2+
================
3+
4+
Méthodes vtkTrihedron::Get*AxisLabelActor2D ( ).
5+
6+
17
Version 5.15.0 : 12/12/25
28
================
39

0 commit comments

Comments
 (0)