Home
last modified time | relevance | path

Searched refs:currentVisitor (Results 1 – 4 of 4) sorted by relevance

/dports/math/scilab/scilab-6.1.1/scilab/modules/renderer/src/java/org/scilab/modules/renderer/JoGLView/axes/
H A DAxesDrawer.java924 if (currentVisitor != null) { in compute2dViewCoordinates()
967 if (currentVisitor != null) { in computePixelFrom2dViewCoordinates()
1004 DrawerVisitor currentVisitor; in computePixelFrom3dCoordinates() local
1017 if (currentVisitor != null) { in computePixelFrom3dCoordinates()
1044 if (currentVisitor != null) { in computePixelFrom3dCoordinates()
1091 if (currentVisitor != null) { in compute3dViewCoordinates()
1137 DrawerVisitor currentVisitor; in compute2dViewFromPixelCoordinates() local
1143 if (currentVisitor != null) { in compute2dViewFromPixelCoordinates()
1180 if (currentVisitor != null) { in unProject()
1201 DrawerVisitor currentVisitor; in getViewingArea() local
[all …]
/dports/math/scilab/scilab-6.1.1/scilab/modules/renderer/src/java/org/scilab/modules/renderer/JoGLView/text/
H A DTextManager.java604 DrawerVisitor currentVisitor = DrawerVisitor.getVisitor(text.getParentFrameOrFigure()); in updateTextCorners() local
609 … Transformation currentProj = currentVisitor.getAxesDrawer().getCurrentProjection(parentAxes); in updateTextCorners()
611 …Dimension spriteDim = currentVisitor.getTextManager().getSpriteDims(currentVisitor.getColorMap(), … in updateTextCorners()
613 …Vector3d[] textBoxVectors = currentVisitor.getTextManager().computeTextBoxVectors(currentProj, tex… in updateTextCorners()
614 …Vector3d[] cornerPositions = currentVisitor.getTextManager().computeTextPosition(currentProj, text… in updateTextCorners()
617 …projCorners = currentVisitor.getTextManager().computeProjTextBoxCorners(cornerPositions[1], text.g… in updateTextCorners()
619 …projCorners = currentVisitor.getTextManager().computeProjCorners(cornerPositions[0], text.getFontA… in updateTextCorners()
622 …Vector3d[] corners = currentVisitor.getTextManager().computeCorners(currentProj, projCorners, pare… in updateTextCorners()
623 … Double[] coordinates = currentVisitor.getTextManager().cornersToCoordinateArray(corners); in updateTextCorners()
/dports/math/scilab/scilab-6.1.1/scilab/modules/renderer/src/java/org/scilab/modules/renderer/JoGLView/datatip/
H A DDatatipTextDrawer.java277 DrawerVisitor currentVisitor = DrawerVisitor.getVisitor(datatip.getParentFrameOrFigure()); in updateTextCorners() local
278 …Transformation currentProj = currentVisitor.getAxesDrawer().getProjection(datatip.getParentAxes()); in updateTextCorners()
280 …Dimension spriteDim = currentVisitor.getDatatipTextDrawer().getSpriteDims(currentVisitor.getColorM… in updateTextCorners()
284 …Vector3d[] textBoxVectors = currentVisitor.getDatatipTextDrawer().computeTextBoxVectors(currentPro… in updateTextCorners()
285 …Vector3d[] cornerPositions = currentVisitor.getDatatipTextDrawer().computeTextPosition(currentProj… in updateTextCorners()
333 …projCorners = currentVisitor.getDatatipTextDrawer().computeProjTextBoxCorners(cornerPositions[1], … in updateTextCorners()
335 …projCorners = currentVisitor.getDatatipTextDrawer().computeProjCorners(cornerPositions[0], datatip… in updateTextCorners()
342 …Vector3d[] corners = currentVisitor.getDatatipTextDrawer().computeCorners(currentProj, projCorners… in updateTextCorners()
343 … Double[] coordinates = currentVisitor.getDatatipTextDrawer().cornersToCoordinateArray(corners); in updateTextCorners()
/dports/lang/kawa/kawa-3.1.1/gnu/expr/
H A DInlineCalls.java48 public static ThreadLocal<InlineCalls> currentVisitor field in InlineCalls
53 InlineCalls saved = currentVisitor.get(); // normally null in inlineCalls()
55 currentVisitor.set(visitor); in inlineCalls()
58 currentVisitor.set(saved); in inlineCalls()