mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0026109: Visualization - add ChangeAxisAspect(int) method to Graphic3d_GraduatedTrihedron
This commit is contained in:
parent
c3715b7477
commit
2afd4e9888
@ -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); }
|
||||
|
Loading…
x
Reference in New Issue
Block a user