Home
last modified time | relevance | path

Searched refs:q2x (Results 1 – 25 of 72) sorted by relevance

123

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Numerics/System/Numerics/
H A DQuaternion.cs396 float q2x = value1.X; in Concatenate()
403 float cy = q1z * q2x - q1x * q2z; in Concatenate()
404 float cz = q1x * q2y - q1y * q2x; in Concatenate()
484 float q2x = value2.X; in Multiply()
491 float cy = q1z * q2x - q1x * q2z; in Multiply()
492 float cz = q1x * q2y - q1y * q2x; in Multiply()
543 float q2x = -value2.X * invNorm; in Divide()
553 float cy = q1z * q2x - q1x * q2z; in Divide()
554 float cz = q1x * q2y - q1y * q2x; in Divide()
634 float q2x = value2.X; in operator *()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Numerics.Vectors/src/System/Numerics/
H A DQuaternion.cs398 float q2x = value1.X; in Concatenate()
405 float cy = q1z * q2x - q1x * q2z; in Concatenate()
406 float cz = q1x * q2y - q1y * q2x; in Concatenate()
486 float q2x = value2.X; in Multiply()
493 float cy = q1z * q2x - q1x * q2z; in Multiply()
494 float cz = q1x * q2y - q1y * q2x; in Multiply()
545 float q2x = -value2.X * invNorm; in Divide()
555 float cy = q1z * q2x - q1x * q2z; in Divide()
556 float cz = q1x * q2y - q1y * q2x; in Divide()
636 float q2x = value2.X; in operator *()
[all …]
/dports/x11/xrandr/xrandr-1.5.1/
H A Dkeystone.5c230 * m20*q1x*w + q1x - q0x + m21*q3x*h + q3x - q0x + q0x = m20*q2x*w + m21*q2x*h + q2x
232 * m20*q1x*w - m20*q2x*w = m21*q2x*h - m21*q3x*h + q2x - q1x + q0x - q3x + q0x - q0x
234 * m20*(q1x - q2x)*w = m21*(q2x - q3x)*h + q2x - q1x - q3x + q0x
246 …* m20*(q1x - q2x)*(q1y - q2y)*w = m21*(q2x - q3x)*(q1y - q2y)*h + (q2x - q1x - q3x + q0x…
248 …* m20*(q1y - q2y)*(q1x - q2x)*w = m21*(q2y - q3y)*(q1x - q2x)*h + (q2y - q1y - q3y + q0y…
250 …* 0 = m21*((q2x - q3x)*(q1y - q2y) - (q2y - q3y)*(q1x - q2x))*h …
269 real q2x = q[2].x, q2y = q[2].y;
279 real a = ((q2x - q3x)*(q1y - q2y) - (q2y - q3y)*(q1x - q2x)) * h;
280 real b = (q2x - q1x - q3x + q0x) * (q1y - q2y) - (q2y - q1y - q3y + q0y) * (q1x - q2x);
283 if (q1x != q2x)
[all …]
/dports/graphics/geos/geos-3.9.1/tests/unit/algorithm/
H A DIntersectionTest.cpp47 double q1x, double q1y, double q2x, double q2y) { in checkIntersectionNull()
51 Coordinate q2(q2x, q2y); in checkIntersectionNull()
57 double q1x, double q1y, double q2x, double q2y, in checkIntersection()
62 Coordinate q2(q2x, q2y); in checkIntersection()
/dports/math/jts/jts-jts-1.18.1/modules/core/src/test/java/org/locationtech/jts/algorithm/
H A DIntersectionTest.java53 double q1x, double q1y, double q2x, double q2y, in checkIntersection() argument
58 Coordinate q2 = new Coordinate(q2x, q2y); in checkIntersection()
68 double q1x, double q1y, double q2x, double q2y) { in checkIntersectionNull() argument
72 Coordinate q2 = new Coordinate(q2x, q2y); in checkIntersectionNull()
/dports/science/quantum-espresso/q-e-qe-6.7.0/PW/src/
H A Dgk_sort.f9043 REAL(DP) :: q2x ! upper bound for |G| local
47 q2x = ( SQRT( SUM(k(:)**2) ) + SQRT( ecut ) )**2
70 IF ( SUM( g(:,ng)**2 ) > ( q2x + eps8 ) ) EXIT
/dports/science/quantum-espresso/q-e-qe-6.7.0/GWW/simple/
H A Dgk_sort_limit.f9034 REAL(DP) :: q2x ! upper bound for |G| local
38 q2x = ( sqrt( sum(k(:)**2) ) + sqrt( ecut ) )**2
61 IF ( sum( g(:,ng)**2 ) > ( q2x + eps8 ) ) exit
/dports/math/jts/jts-jts-1.18.1/modules/core/src/main/java/org/locationtech/jts/algorithm/
H A DIntersection.java72 double q2x = q2.x - midx; in intersection()
81 double qy = q2x - q1x; in intersection()
82 double qw = q1x * q2y - q2x * q1y; in intersection()
/dports/graphics/geos/geos-3.9.1/src/algorithm/
H A DIntersection.cpp54 double q2x = q2.x - midx; in intersection() local
63 double qy = q2x - q1x; in intersection()
64 double qw = q1x * q2y - q2x * q1y; in intersection()
H A DCGAlgorithmsDD.cpp164 DD q2x(q2.x); in intersection() local
177 DD qy = q2x - q1x; in intersection()
178 DD qw = (q1x * q2y) - (q2x * q1y); in intersection()
/dports/graphics/geos/geos-3.9.1/tests/unit/geom/
H A DLineSegmentTest.cpp30 double q1x, double q1y, double q2x, double q2y, in checkLineIntersection()
33 LineSegment seg2(q1x, q1y, q2x, q2y); in checkLineIntersection()
/dports/games/xpilot/xpilot-4.5.5/src/server/
H A Dcollision.c72 int q1x, int q1y, int q2x, int q2y,
98 if (q1x < q2x)
101 q2x += World.width;
111 dx = WRAP_DX(q2x - p2x);
123 dqx = WRAP_DX(q2x - q1x);
146 int q1x, int q1y, int q2x, int q2y, in in_range_acd() argument
171 if (q1x > q2x) in in_range_acd()
174 q2x -= World.width; in in_range_acd()
185 q2x -= World.width; in in_range_acd()
207 if ((p2x - q2x) * (p2x - q2x) + (p2y - q2y) * (p2y - q2y) < r * r) in in_range_acd()
[all …]
/dports/science/mcstas-comps/mcstas-comps-2.5-src/contrib/
H A DPol_bender_tapering.comp266 …double cphi, sphi, d1,d2, p0x,p0z, p1x,p1z, p2x,p2z, c1x,c1z, c2x,c2z, q0x,q0z, q1x,q1z, q2x,q2z, …
294q2x= q0x - dx2_q*(-cphi);/*exit point of outer channel edge (without correction for channel blade …
330q2x= q0x - dx2_q*(-cphi);/*exit point of outer channel edge (without correction for channel blade …
364 D2=sqrt( (q2x-p2x)*(q2x-p2x) + (q2z-p2z)*(q2z-p2z) ) ;
370 c2x= p2x + 0.5*(q2x-p2x) + h2/D2 * (q2z-p2z); /*negative*/
371 c2z= p2z + 0.5*(q2z-p2z) + h2/D2 * -(q2x-p2x);
546 …double cphi, sphi, d1,d2, p0x,p0z, p1x,p1z, p2x,p2z, c1x,c1z, c2x,c2z, q0x,q0z, q1x,q1z, q2x,q2z, …
583q2x= q0x - dx2_q*(-cphi);/*exit point of outer channel edge (without correction for channel blade …
592 D2=sqrt( (q2x-p2x)*(q2x-p2x) + (q2z-p2z)*(q2z-p2z) ) ;
598 c2x= p2x + 0.5*(q2x-p2x) + h2/D2 * (q2z-p2z); /*negative*/
[all …]
/dports/devel/kBuild/kBuild-0.1.9998/src/kmk/tests/scripts/features/
H A Dse_explicit152 a%l: q1x $$+ q2x ; @echo '$+'
154 '', "q1x bar bar q2x bar bar\n");
/dports/math/jts/jts-jts-1.18.1/modules/core/src/test/java/org/locationtech/jts/geom/
H A DLineSegmentTest.java65 double q1x, double q1y, double q2x, double q2y, in checkLineIntersection() argument
68 LineSegment seg2 = new LineSegment(q1x, q1y, q2x, q2y); in checkLineIntersection()
/dports/lang/yorick/yorick-y_2_2_04/i/
H A Ddemo3.i131 q2x= p2x + c*sin(beta); in display()
139 plg, [p2y,q2y], [p2x,q2x], marks=0,type=1,width=24,color="green"; in display()
/dports/print/ghostscript8-x11/ghostscript-8.71/base/
H A Dgxhintn1.c169 intersect_bar_bar(fixed q0x, fixed q0y, fixed q1x, fixed q1y, fixed q2x, fixed q2y, fixed q3x, fixe… in intersect_bar_bar() argument
173 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
175 if (q0x == q2x && q0y == q2y) in intersect_bar_bar()
179 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
186 fixed dx2 = q2x - q0x; in intersect_bar_bar()
228 fixed q2x = this->pole[j + 0].gx; in t1_hinter__intersect_bar_bar() local
233 return intersect_bar_bar(q0x, q0y, q1x, q1y, q2x, q2y, q3x, q3y); in t1_hinter__intersect_bar_bar()
/dports/print/ghostscript8-base/ghostscript-8.71/base/
H A Dgxhintn1.c169 intersect_bar_bar(fixed q0x, fixed q0y, fixed q1x, fixed q1y, fixed q2x, fixed q2y, fixed q3x, fixe… in intersect_bar_bar() argument
173 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
175 if (q0x == q2x && q0y == q2y) in intersect_bar_bar()
179 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
186 fixed dx2 = q2x - q0x; in intersect_bar_bar()
228 fixed q2x = this->pole[j + 0].gx; in t1_hinter__intersect_bar_bar() local
233 return intersect_bar_bar(q0x, q0y, q1x, q1y, q2x, q2y, q3x, q3y); in t1_hinter__intersect_bar_bar()
/dports/print/ghostscript9-agpl-base/ghostscript-9.52/base/
H A Dgxhintn1.c170 intersect_bar_bar(fixed q0x, fixed q0y, fixed q1x, fixed q1y, fixed q2x, fixed q2y, fixed q3x, fixe… in intersect_bar_bar() argument
174 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
176 if (q0x == q2x && q0y == q2y) in intersect_bar_bar()
180 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
187 fixed dx2 = q2x - q0x; in intersect_bar_bar()
229 fixed q2x = self->pole[j + 0].gx; in t1_hinter__intersect_bar_bar() local
234 return intersect_bar_bar(q0x, q0y, q1x, q1y, q2x, q2y, q3x, q3y); in t1_hinter__intersect_bar_bar()
/dports/print/ghostscript9-agpl-x11/ghostscript-9.52/base/
H A Dgxhintn1.c170 intersect_bar_bar(fixed q0x, fixed q0y, fixed q1x, fixed q1y, fixed q2x, fixed q2y, fixed q3x, fixe… in intersect_bar_bar() argument
174 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
176 if (q0x == q2x && q0y == q2y) in intersect_bar_bar()
180 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
187 fixed dx2 = q2x - q0x; in intersect_bar_bar()
229 fixed q2x = self->pole[j + 0].gx; in t1_hinter__intersect_bar_bar() local
234 return intersect_bar_bar(q0x, q0y, q1x, q1y, q2x, q2y, q3x, q3y); in t1_hinter__intersect_bar_bar()
/dports/print/ghostscript9-x11/ghostscript-9.06/base/
H A Dgxhintn1.c171 intersect_bar_bar(fixed q0x, fixed q0y, fixed q1x, fixed q1y, fixed q2x, fixed q2y, fixed q3x, fixe… in intersect_bar_bar() argument
175 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
177 if (q0x == q2x && q0y == q2y) in intersect_bar_bar()
181 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
188 fixed dx2 = q2x - q0x; in intersect_bar_bar()
230 fixed q2x = self->pole[j + 0].gx; in t1_hinter__intersect_bar_bar() local
235 return intersect_bar_bar(q0x, q0y, q1x, q1y, q2x, q2y, q3x, q3y); in t1_hinter__intersect_bar_bar()
/dports/print/ghostscript9-base/ghostscript-9.06/base/
H A Dgxhintn1.c171 intersect_bar_bar(fixed q0x, fixed q0y, fixed q1x, fixed q1y, fixed q2x, fixed q2y, fixed q3x, fixe… in intersect_bar_bar() argument
175 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
177 if (q0x == q2x && q0y == q2y) in intersect_bar_bar()
181 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
188 fixed dx2 = q2x - q0x; in intersect_bar_bar()
230 fixed q2x = self->pole[j + 0].gx; in t1_hinter__intersect_bar_bar() local
235 return intersect_bar_bar(q0x, q0y, q1x, q1y, q2x, q2y, q3x, q3y); in t1_hinter__intersect_bar_bar()
/dports/devel/remake/remake-4.3+dbg-1.5/tests/scripts/features/
H A Dse_explicit153 a%l: q1x $$+ q2x ; @echo '$+'
155 '', "q1x bar bar q2x bar bar\n");
/dports/devel/gmake/make-4.3/tests/scripts/features/
H A Dse_explicit153 a%l: q1x $$+ q2x ; @echo '$+'
155 '', "q1x bar bar q2x bar bar\n");
/dports/graphics/gimp-app/gimp-2.10.30/app/display/
H A Dgimptoolhandlegrid.c154 gdouble q2x,
1149 gdouble q2x, gdouble q2y) in calc_lineintersect_ratio() argument
1153 denom = (q2y - q1y) * (p2x - p1x) - (q2x - q1x) * (p2y - p1y); in calc_lineintersect_ratio()
1160 u = (q2y - q1y) * (q1x - p1x) - (q1y - p1y) * (q2x - q1x); in calc_lineintersect_ratio()

123