Home
last modified time | relevance | path

Searched refs:q1x (Results 1 – 25 of 80) sorted by relevance

1234

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Numerics/System/Numerics/
H A DQuaternion.cs391 float q1x = value2.X; in Concatenate()
403 float cy = q1z * q2x - q1x * q2z; in Concatenate()
404 float cz = q1x * q2y - q1y * q2x; in Concatenate()
479 float q1x = value1.X; in Multiply()
491 float cy = q1z * q2x - q1x * q2z; in Multiply()
492 float cz = q1x * q2y - q1y * q2x; in Multiply()
532 float q1x = value1.X; in Divide()
553 float cy = q1z * q2x - q1x * q2z; in Divide()
554 float cz = q1x * q2y - q1y * q2x; in Divide()
629 float q1x = value1.X; in operator *()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Numerics.Vectors/src/System/Numerics/
H A DQuaternion.cs393 float q1x = value2.X; in Concatenate()
405 float cy = q1z * q2x - q1x * q2z; in Concatenate()
406 float cz = q1x * q2y - q1y * q2x; in Concatenate()
481 float q1x = value1.X; in Multiply()
493 float cy = q1z * q2x - q1x * q2z; in Multiply()
494 float cz = q1x * q2y - q1y * q2x; in Multiply()
534 float q1x = value1.X; in Divide()
555 float cy = q1z * q2x - q1x * q2z; in Divide()
556 float cz = q1x * q2y - q1y * q2x; in Divide()
631 float q1x = value1.X; in operator *()
[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()
50 Coordinate q1(q1x, q1y); in checkIntersectionNull()
57 double q1x, double q1y, double q2x, double q2y, in checkIntersection()
61 Coordinate q1(q1x, q1y); in checkIntersection()
/dports/x11/xrandr/xrandr-1.5.1/
H A Dkeystone.5c216 * m00*w + q0x = q1x*(m20*w + 1)
217 * m00 = m20*q1x + (q1x - q0x) / w;
230 * 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
248 …* m20*(q1y - q2y)*(q1x - q2x)*w = m21*(q2y - q3y)*(q1x - q2x)*h + (q2y - q1y - q3y + q0y…
268 real q1x = q[1].x, q1y = q[1].y;
280 real b = (q2x - q1x - q3x + q0x) * (q1y - q2y) - (q2y - q1y - q3y + q0y) * (q1x - q2x);
283 if (q1x != q2x)
284 m20 = (m21 * (q2x - q3x) * h + q2x - q1x - q3x + q0x) / ((q1x - q2x) * w);
[all …]
/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
57 Coordinate q1 = new Coordinate(q1x, q1y); in checkIntersection()
68 double q1x, double q1y, double q2x, double q2y) { in checkIntersectionNull() argument
71 Coordinate q1 = new Coordinate(q1x, q1y); in checkIntersectionNull()
/dports/math/mfem/mfem-4.3/tests/unit/linalg/
H A Dtest_complex_operator.cpp54 Vector q1x(4); variable
56 q1.Mult(x, q1x);
57 q1x.Add(-1.0, x);
59 REQUIRE(q1x.Normlinf() < tol);
/dports/net/jcifs/jcifs_1.3.19/src/jcifs/
H A DUniAddress.java166 QueryThread q1x = new QueryThread( sem, name, type, null, svr ); in lookupServerOrWorkgroup() local
168 q1x.setDaemon( true ); in lookupServerOrWorkgroup()
172 q1x.start(); in lookupServerOrWorkgroup()
175 while( sem.count > 0 && q1x.ans == null && q20.ans == null ) { in lookupServerOrWorkgroup()
182 if( q1x.ans != null ) { in lookupServerOrWorkgroup()
183 return q1x.ans; in lookupServerOrWorkgroup()
187 throw q1x.uhe; in lookupServerOrWorkgroup()
/dports/math/jts/jts-jts-1.18.1/modules/core/src/main/java/org/locationtech/jts/algorithm/
H A DIntersection.java70 double q1x = q1.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.cpp52 double q1x = q1.x - midx; in intersection() local
63 double qy = q2x - q1x; in intersection()
64 double qw = q1x * q2y - q2x * q1y; in intersection()
H A DCGAlgorithmsDD.cpp162 DD q1x(q1.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/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, …
296q1x= q0x - dx1_q*(-cphi);/*exit point of inner channel edge (without correction for channel blade …
332q1x= q0x - dx1_q*(-cphi);/*exit point of inner channel edge (without correction for channel blade …
362 D1=sqrt( (q1x-p1x)*(q1x-p1x) + (q1z-p1z)*(q1z-p1z) ) ;
367 …c1x= p1x + 0.5*(q1x-p1x) + h1/D1 * (q1z-p1z); /*these are the centers around which the channel ed…
368 c1z= p1z + 0.5*(q1z-p1z) + h1/D1 * -(q1x-p1x); /*positive*/
546 …double cphi, sphi, d1,d2, p0x,p0z, p1x,p1z, p2x,p2z, c1x,c1z, c2x,c2z, q0x,q0z, q1x,q1z, q2x,q2z, …
585q1x= q0x - dx1_q*(-cphi);/*exit point of inner channel edge (without correction for channel blade …
590 D1=sqrt( (q1x-p1x)*(q1x-p1x) + (q1z-p1z)*(q1z-p1z) ) ;
595 …c1x= p1x + 0.5*(q1x-p1x) + h1/D1 * (q1z-p1z); /*these are the centers around which the channel ed…
[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.i129 q1x= p1x + c*sin(alpha); in display()
138 plg, [p1y,q1y], [p1x,q1x], 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
171 if (q1x == q0x && q1y == q0y) in intersect_bar_bar()
173 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
179 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
181 if (q1x == q3x && q1y == q3y) in intersect_bar_bar()
184 fixed dx1 = q1x - q0x; in intersect_bar_bar()
226 fixed q1x = this->pole[i + 1].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
171 if (q1x == q0x && q1y == q0y) in intersect_bar_bar()
173 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
179 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
181 if (q1x == q3x && q1y == q3y) in intersect_bar_bar()
184 fixed dx1 = q1x - q0x; in intersect_bar_bar()
226 fixed q1x = this->pole[i + 1].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
172 if (q1x == q0x && q1y == q0y) in intersect_bar_bar()
174 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
180 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
182 if (q1x == q3x && q1y == q3y) in intersect_bar_bar()
185 fixed dx1 = q1x - q0x; in intersect_bar_bar()
227 fixed q1x = self->pole[i + 1].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
172 if (q1x == q0x && q1y == q0y) in intersect_bar_bar()
174 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
180 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
182 if (q1x == q3x && q1y == q3y) in intersect_bar_bar()
185 fixed dx1 = q1x - q0x; in intersect_bar_bar()
227 fixed q1x = self->pole[i + 1].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
173 if (q1x == q0x && q1y == q0y) in intersect_bar_bar()
175 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
181 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
183 if (q1x == q3x && q1y == q3y) in intersect_bar_bar()
186 fixed dx1 = q1x - q0x; in intersect_bar_bar()
228 fixed q1x = self->pole[i + 1].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
173 if (q1x == q0x && q1y == q0y) in intersect_bar_bar()
175 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
181 if (q1x == q2x && q1y == q2y) in intersect_bar_bar()
183 if (q1x == q3x && q1y == q3y) in intersect_bar_bar()
186 fixed dx1 = q1x - q0x; in intersect_bar_bar()
228 fixed q1x = self->pole[i + 1].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/games/xpilot/xpilot-4.5.5/src/server/
H A Dcollision.c72 int q1x, int q1y, int q2x, int q2y,
97 if (ABS(q2x - q1x) > World.width / 2) {
98 if (q1x < q2x)
99 q1x += World.width;
116 dox = WRAP_DX(p1x - q1x);
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()
172 q1x -= World.width; in in_range_acd()
184 q1x -= World.width; in in_range_acd()
[all …]
/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.c152 gdouble q1x,
1148 gdouble q1x, gdouble q1y, 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()

1234