File tree Expand file tree Collapse file tree 5 files changed +26
-2
lines changed
Expand file tree Collapse file tree 5 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 33#
44
55set (VTK_CONTRIB_MAJOR_VERSION "5" )
6- set (VTK_CONTRIB_MINOR_VERSION "15 " )
6+ set (VTK_CONTRIB_MINOR_VERSION "16 " )
77set (VTK_CONTRIB_RELEASE_VERSION "0" )
88set (VTK_CONTRIB_VERSION ${VTK_CONTRIB_MAJOR_VERSION} .${VTK_CONTRIB_MINOR_VERSION} .${VTK_CONTRIB_RELEASE_VERSION} )
99
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1+ Version 5.16.0 : 20/01/26
2+ ================
3+
4+ Méthodes vtkTrihedron::Get*AxisLabelActor2D ( ).
5+
6+
17Version 5.15.0 : 12/12/25
28================
39
You can’t perform that action at this time.
0 commit comments