Home
last modified time | relevance | path

Searched refs:tmpV3 (Results 1 – 9 of 9) sorted by relevance

/dports/graphics/jogamp-jogl/jogl/src/jogl/classes/com/jogamp/opengl/math/geom/
H A DAABBox.java235 if (tmpV3[0] < low[0]) in resize()
236 low[0] = tmpV3[0]; in resize()
237 if (tmpV3[1] < low[1]) in resize()
238 low[1] = tmpV3[1]; in resize()
239 if (tmpV3[2] < low[2]) in resize()
240 low[2] = tmpV3[2]; in resize()
248 if (tmpV3[0] > high[0]) in resize()
249 high[0] = tmpV3[0]; in resize()
250 if (tmpV3[1] > high[1]) in resize()
596 VectorUtil.scaleVec3(tmpV3, tmpV3, size); // in-place scale in scale()
[all …]
/dports/graphics/jogamp-jogl/jogl/src/jogl/classes/com/jogamp/graph/font/
H A DFont.java95 AABBox getBBox(final AABBox dest, final float pixelSize, final float[] tmpV3); in getBBox() argument
128 public AABBox getBBox(final AABBox dest, final float pixelSize, float[] tmpV3); in getBBox() argument
/dports/graphics/jogamp-jogl/jogl/src/jogl/classes/jogamp/graph/font/typecast/
H A DTypecastHMetrics.java85 public final AABBox getBBox(final AABBox dest, final float pixelSize, final float[] tmpV3) { in getBBox() argument
86 return dest.setSize(bbox.getLow(), bbox.getHigh()).scale(getScale(pixelSize), tmpV3); in getBBox()
H A DTypecastGlyph.java187 public final AABBox getBBox(final AABBox dest, final float pixelSize, final float[] tmpV3) { in getBBox() argument
188 return dest.copy(getBBox()).scale(getScale(pixelSize), tmpV3); in getBBox()
H A DTypecastFont.java57 private final float[] tmpV3 = new float[3]; field in TypecastFont
267 final AABBox bbox = glyph.getBBox(tmp, pixelSize, tmpV3); in getMetricHeight()
/dports/graphics/jogamp-jogl/jogl/src/test/com/jogamp/opengl/test/junit/graph/demos/ui/
H A DLabel.java92 private final float[] tmpV3 = new float[3]; field in Label
101 box.resize(shape.getBounds(), t, tmpV3);
H A DLabel0.java74 private final float[] tmpV3 = new float[3]; field in Label0
83 box.resize(shape.getBounds(), t1, tmpV3);
/dports/graphics/jogamp-jogl/jogl/src/jogl/classes/com/jogamp/graph/curve/
H A DOutlineShape.java148 private final float[] tmpV3 = new float[3]; field in OutlineShape
448 VectorUtil.midVec3(tmpV3, b.getCoord(), c.getCoord()); in subdivideTriangle()
449 VectorUtil.midVec3(tmpV2, tmpV1, tmpV3); in subdivideTriangle()
456 outline.addVertex(index+2, vertexFactory.create(tmpV3, 0, 3, false)); in subdivideTriangle()
535 tmpV1, tmpV2, tmpV3) ) { in checkTriOverlaps0()
568 tmpV1, tmpV2, tmpV3, FloatUtil.EPSILON) ) { in checkTriOverlaps1()
/dports/science/py-pymol/pymol-open-source-2.4.0/layer2/
H A DRepLabel.cpp974 float tmpV[3], tmpV2[3], tmpV3[3], tmpV4[3], linev2[3]; in RepLabelRenderRayBackground() local
1001 cross_product3f(tmpV, nzn, tmpV3); in RepLabelRenderRayBackground()
1004 normalize3f(tmpV3); in RepLabelRenderRayBackground()
1007 mult3f(tmpV3, cw, dirv1); in RepLabelRenderRayBackground()