Home
last modified time | relevance | path

Searched refs:xmag (Results 1 – 25 of 298) sorted by relevance

12345678910>>...12

/dports/graphics/py-pycollada/pycollada-0.6/collada/tests/
H A Dtest_camera.py110 self.assertEqual(cam.xmag, 30)
116 self.assertIsNone(cam.xmag)
122 self.assertEqual(cam.xmag, 30)
128 self.assertEqual(cam.xmag, 30)
134 self.assertIsNone(cam.xmag)
144 self.assertEqual(cam.xmag, 30)
152 self.assertEqual(cam.xmag, 30)
160 self.assertEqual(cam.xmag, 30)
167 cam.xmag = None
175 self.assertEqual(cam.xmag, None)
[all …]
/dports/graphics/py-pycollada/pycollada-0.6/collada/
H A Dcamera.py224 self.xmag = xmag
245 if self.xmag is not None:
246 orthographic_node.append(E.xmag(str(self.xmag)))
260 if self.xmag is not None and self.ymag is None \
263 elif self.xmag is None and self.ymag is not None \
266 elif self.xmag is not None and self.ymag is None \
294 xmag = orthonode.find( tag('xmag') )
302 if xmag is not None:
303 xmag = float(xmag.text)
319 return OrthographicCamera(id, znear, zfar, xmag=xmag, ymag=ymag,
[all …]
/dports/audio/muse-sequencer/muse-4.0.0/src/muse/components/
H A Dview.cpp65 xmag = xm; in View()
97 xmag = xs; in setXMag()
588 double xMag = (xmag < 0) ? 1.0/double(-xmag) : double(xmag); in setPainter()
1052 w = (r.width()-xmag-1) / (-xmag); // round up
1111 val = (x + xpos + xorg + xmag / 2) / xmag;
1129 return (x-xmag/2) / (-xmag);
1145 return (x + xmag/2) / xmag;
1803 if(xmag <= 0) in mathXCoordinates()
1812 if(xmag <= 0) in mathXCoordinates()
1821 if(xmag <= 0) in mathXCoordinates()
[all …]
/dports/math/arb/arb-2.21.1/arb/
H A Dexp_arf_rs_generic.c39 slong j, k, m, M, tp, xmag; in arb_exp_taylor_sum_rs_generic() local
42 xmag = arf_abs_bound_lt_2exp_si(arb_midref(x)); in arb_exp_taylor_sum_rs_generic()
66 tp = prec - 2 * k * (-xmag) + 10; in arb_exp_taylor_sum_rs_generic()
122 slong q, xmag, wp, k, N; in arb_exp_arf_rs_generic() local
134 xmag = arf_abs_bound_lt_2exp_si(x); in arb_exp_arf_rs_generic()
139 if (xmag < -prec - 4) in arb_exp_arf_rs_generic()
158 q = FLINT_MAX(0, xmag + q); in arb_exp_arf_rs_generic()
161 if (minus_one && xmag < 0) in arb_exp_arf_rs_generic()
162 wp += (-xmag); in arb_exp_arf_rs_generic()
167 N = _arb_exp_taylor_bound(xmag - q, wp); in arb_exp_arf_rs_generic()
H A Dsin_cos_arf_generic.c54 slong j, k, m, M, tp, xmag; in arb_sin_cos_taylor_sum_rs() local
57 xmag = arf_abs_bound_lt_2exp_si(arb_midref(x)); in arb_sin_cos_taylor_sum_rs()
84 tp = prec - 2 * k * (-xmag) + 10; in arb_sin_cos_taylor_sum_rs()
139 slong q, xmag, wp, k, N; in arb_sin_cos_arf_rs_generic() local
152 xmag = arf_abs_bound_lt_2exp_si(x); in arb_sin_cos_arf_rs_generic()
155 if (xmag < -(prec / 2) - 4) in arb_sin_cos_arf_rs_generic()
167 xmag = FLINT_MAX(xmag, -prec); in arb_sin_cos_arf_rs_generic()
190 q = FLINT_MAX(0, xmag + q); in arb_sin_cos_arf_rs_generic()
203 wp += (-xmag); in arb_sin_cos_arf_rs_generic()
204 N = _arb_exp_taylor_bound(xmag, wp); in arb_sin_cos_arf_rs_generic()
[all …]
H A Dsin_cos_arf_bb.c161 slong N, xmag; in arb_sin_cos_fmpz_div_2exp_bsplit() local
175 xmag = fmpz_bits(x) - r; in arb_sin_cos_fmpz_div_2exp_bsplit()
176 N = bs_num_terms(xmag, prec); in arb_sin_cos_fmpz_div_2exp_bsplit()
216 slong k, iter, bits, r, xmag, q, wp; in arb_sin_cos_arf_bb() local
245 xmag = arf_abs_bound_lt_2exp_si(x); in arb_sin_cos_arf_bb()
251 if (arf_is_special(x) || arf_cmpabs_d(x, 3.15) > 0 || xmag < -2 * prec - 100) in arb_sin_cos_arf_bb()
260 q = FLINT_MAX(0, xmag + argred_bits); in arb_sin_cos_arf_bb()
264 wp = prec + 10 + 2 * (q - xmag) + 2 * FLINT_BIT_COUNT(prec); in arb_sin_cos_arf_bb()
/dports/math/maxima/maxima-5.43.2/share/odepack/src/
H A Didamax.lisp25 (prog ((i 0) (ix 0) (dmax 0.0) (xmag 0.0) (idamax 0))
26 (declare (type (double-float) xmag dmax)
44 (setf xmag (abs (f2cl-lib:fref dx-%data% (ix) ((1 *)) dx-%offset%)))
46 ((> xmag dmax)
48 (setf dmax xmag)))
57 (setf xmag (abs (f2cl-lib:fref dx-%data% (i) ((1 *)) dx-%offset%)))
59 ((> xmag dmax)
61 (setf dmax xmag)))
/dports/editors/ted/Ted-2.23/appUtil/
H A DgeoGrid.h4 # define COORDtoGRID(xmag,t) ((int)((xmag)*(t))) argument
5 # define GRIDtoCOORD(p,xmag) ((int)((p)/(xmag))) argument
/dports/math/gri/gri-2.12.23/src/
H A Dinput.cc32 double xcm = 0.0, ycm = 0.0, xmag = 1.0, ymag = 1.0, angle = 0.0; in inputCmd() local
41 getdnum(_word[4], &xmag); in inputCmd()
47 getdnum(_word[4], &xmag); in inputCmd()
80 xcm * PT_PER_CM, ycm * PT_PER_CM, xmag, ymag, angle); in inputCmd()
/dports/science/apbs/apbs-pdb2pqr-apbs-1.5-102-g500c1473/apbs/externals/fetk/punc/src/pmg/src_f77/
H A Dmblasd.f374 double precision smax,xmag local
391 xmag = dabs(sx(i))
392 if(xmag.le.smax) go to 40
394 smax = xmag
403 xmag = dabs(sx(i))
404 if(xmag.le.smax) go to 30
406 smax = xmag
/dports/graphics/processing/processing-1.5.1/modes/java/examples/3D/Form/RGBCube/
H A DRGBCube.pde8 float xmag, ymag = 0;
29 float diff = xmag-newXmag;
30 if (abs(diff) > 0.01) { xmag -= diff/4.0; }
36 rotateY(-xmag);
/dports/x11/xmag/xmag-1.0.6/
H A DMakefile.am23 bin_PROGRAMS = xmag program
37 xmag.c
49 EXTRA_DIST = Scale.txt xmag.icon
H A DREADME1 xmag displays a magnified snapshot of a portion of an X11 screen.
14 git://anongit.freedesktop.org/git/xorg/app/xmag
16 http://cgit.freedesktop.org/xorg/app/xmag
/dports/math/jts/jts-jts-1.18.1/modules/core/src/main/java/org/locationtech/jts/math/
H A DPlane3D.java74 double xmag = Math.abs(normal.getX()); in closestAxisPlane() local
77 if (xmag > ymag) { in closestAxisPlane()
78 if (xmag > zmag) in closestAxisPlane()
/dports/science/apbs/apbs-pdb2pqr-apbs-1.5-102-g500c1473/apbs/externals/fetk/punc/src/pmg/
H A Dmblasd.c498 static doublereal xmag, smax; in idamax_() local
534 xmag = (d__1 = sx[i__], abs(d__1)); in idamax_()
535 if (xmag <= smax) { in idamax_()
539 smax = xmag; in idamax_()
552 xmag = (d__1 = sx[i__], abs(d__1)); in idamax_()
553 if (xmag <= smax) { in idamax_()
557 smax = xmag; in idamax_()
/dports/audio/musescore/MuseScore-3.6.1/mscore/
H A Ddrumview.cpp341 double xmag = transform().m11(); in wheelEvent() local
347 if (xmag > 10.0) in wheelEvent()
350 xmag *= 1.1; in wheelEvent()
355 if (xmag < 0.001) in wheelEvent()
358 xmag *= .9; in wheelEvent()
361 emit magChanged(xmag, ymag); in wheelEvent()
363 int tpix = (480 * 4) * xmag; in wheelEvent()
421 emit magChanged(xmag, ymag); in wheelEvent()
H A Dchordview.cpp344 double xmag = transform().m11(); in wheelEvent() local
350 if (xmag > 10.0) in wheelEvent()
353 xmag *= 1.1; in wheelEvent()
358 if (xmag < 0.001) in wheelEvent()
361 xmag *= .9; in wheelEvent()
364 emit magChanged(xmag, ymag); in wheelEvent()
366 int tpix = 1000 * xmag; in wheelEvent()
424 emit magChanged(xmag, ymag); in wheelEvent()
H A Druler.h65 void setMag(double xmag, double ymag);
71 double xmag() const { return _xmag; } in xmag() function
/dports/x11-wm/wmconfig/wmconfig-1.5.1/samples/wmconfig/
H A DDesktop104 xlupe description "Magnifying glass for X. like xmag but with continously updates"
106 xmag name "Xmag"
107 xmag exec "xmag &"
108 xmag group "Utilities/Desktop"
109 xmag description "Screen magnifying application for the X Window System"
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/java/math/BigInteger/
H A DLargeValueExceptions.java143 byte[] xmag = new byte[4*MAX_INTS_HALF]; in multiplyDefiniteOverflow()
144 xmag[0] = (byte)0xff; in multiplyDefiniteOverflow()
145 BigInteger x = new BigInteger(1, xmag); in multiplyDefiniteOverflow()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/java/math/BigInteger/
H A DLargeValueExceptions.java143 byte[] xmag = new byte[4*MAX_INTS_HALF]; in multiplyDefiniteOverflow()
144 xmag[0] = (byte)0xff; in multiplyDefiniteOverflow()
145 BigInteger x = new BigInteger(1, xmag); in multiplyDefiniteOverflow()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/java/math/BigInteger/
H A DLargeValueExceptions.java143 byte[] xmag = new byte[4*MAX_INTS_HALF]; in multiplyDefiniteOverflow()
144 xmag[0] = (byte)0xff; in multiplyDefiniteOverflow()
145 BigInteger x = new BigInteger(1, xmag); in multiplyDefiniteOverflow()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/java/math/BigInteger/
H A DLargeValueExceptions.java143 byte[] xmag = new byte[4*MAX_INTS_HALF]; in multiplyDefiniteOverflow()
144 xmag[0] = (byte)0xff; in multiplyDefiniteOverflow()
145 BigInteger x = new BigInteger(1, xmag); in multiplyDefiniteOverflow()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/java/math/BigInteger/
H A DLargeValueExceptions.java143 byte[] xmag = new byte[4*MAX_INTS_HALF]; in multiplyDefiniteOverflow()
144 xmag[0] = (byte)0xff; in multiplyDefiniteOverflow()
145 BigInteger x = new BigInteger(1, xmag); in multiplyDefiniteOverflow()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/java/math/BigInteger/
H A DLargeValueExceptions.java143 byte[] xmag = new byte[4*MAX_INTS_HALF]; in multiplyDefiniteOverflow()
144 xmag[0] = (byte)0xff; in multiplyDefiniteOverflow()
145 BigInteger x = new BigInteger(1, xmag); in multiplyDefiniteOverflow()

12345678910>>...12