

Public Member Functions | |
| BottomXTicksDrawerGL () | |
| double | findYCoordinate (double zCoordinate) |
| double | findZCoordinate () |
Definition at line 21 of file BottomXTicksDrawerGL.java.
| org::scilab::modules::renderer::subwinDrawing::BottomXTicksDrawerGL::BottomXTicksDrawerGL | ( | ) | [inline] |
| double org::scilab::modules::renderer::subwinDrawing::BottomXTicksDrawerGL::findYCoordinate | ( | double | zCoordinate | ) | [inline, virtual] |
Compute the Y coordinate of the X axis segment
| zCoordinate | Z coordinate of the X axis segment alredy computed by findZCoordinate |
Implements org::scilab::modules::renderer::subwinDrawing::XTicksDrawerGL.
Definition at line 35 of file BottomXTicksDrawerGL.java.
References org::scilab::modules::renderer::subwinDrawing::BoxTrimmingObjectGL::findFrontYCoordinate().
00035 { 00036 return findFrontYCoordinate(zCoordinate); 00037 }

| double org::scilab::modules::renderer::subwinDrawing::BottomXTicksDrawerGL::findZCoordinate | ( | ) | [inline, virtual] |
Find the Z coordinate of the X axis segment. X axis segment is always displayed on the bottom of tyhe box.
Implements org::scilab::modules::renderer::subwinDrawing::XTicksDrawerGL.
Definition at line 45 of file BottomXTicksDrawerGL.java.
References org::scilab::modules::renderer::subwinDrawing::BoxTrimmingObjectGL::findLowerZCoordinate().
00045 { 00046 return findLowerZCoordinate(); 00047 }

1.5.4