From 2afd4e98888cda0bd53370dfe74b9fec29269abe Mon Sep 17 00:00:00 2001 From: vsr Date: Mon, 20 Apr 2015 15:21:23 +0300 Subject: [PATCH] 0026109: Visualization - add ChangeAxisAspect(int) method to Graphic3d_GraduatedTrihedron --- src/Graphic3d/Graphic3d_GraduatedTrihedron.hxx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Graphic3d/Graphic3d_GraduatedTrihedron.hxx b/src/Graphic3d/Graphic3d_GraduatedTrihedron.hxx index 13a46a7565..13eb392af4 100644 --- a/src/Graphic3d/Graphic3d_GraduatedTrihedron.hxx +++ b/src/Graphic3d/Graphic3d_GraduatedTrihedron.hxx @@ -147,6 +147,12 @@ public: Graphic3d_AxisAspect& ChangeYAxisAspect() { return myAxes(1); } Graphic3d_AxisAspect& ChangeZAxisAspect() { return myAxes(2); } + Graphic3d_AxisAspect& ChangeAxisAspect (const Standard_Integer theIndex) + { + Standard_OutOfRange_Raise_if (theIndex < 0 || theIndex > 2, "Graphic3d_GraduatedTrihedron::ChangeAxisAspect: theIndex is out of bounds [0,2]."); + return myAxes (theIndex); + } + const Graphic3d_AxisAspect& XAxisAspect() const { return myAxes(0); } const Graphic3d_AxisAspect& YAxisAspect() const { return myAxes(1); } const Graphic3d_AxisAspect& ZAxisAspect() const { return myAxes(2); }