Home
last modified time | relevance | path

Searched refs:xyz0 (Results 1 – 25 of 59) sorted by relevance

123

/dports/math/py-pystan/pystan-2.19.0.0/pystan/stan/lib/stan_math/lib/boost_1.69.0/boost/geometry/strategies/spherical/
H A Ddensify.hpp87 point3d_t const xyz0 = formula::sph_to_cart3d<point3d_t>(p0); in apply() local
89 calc_t const dot01 = geometry::dot_product(xyz0, xyz1); in apply()
101 axis = geometry::cross_product(xyz0, xyz1); in apply()
137 point3d_t s1 = xyz0; in apply()
140 point3d_t s2 = geometry::cross_product(axis, xyz0); in apply()
144 geometry::multiply_value(s3, (c1 - cos_a) * geometry::dot_product(axis, xyz0)); in apply()
/dports/science/frontistr/FrontISTR-c66bdc397de319ca59a0565b3f3b1a3b33f0c50c/hecmw1/src/visualizer/
H A Dhecmw_vis_ray_trace.c105 vv[0 * 3] = vv[4 * 3] = vv[7 * 3] = vv[3 * 3] = vd->xyz0[0]; in find_first_inter_point()
107 vd->xyz0[0] + vd->nxyz[0] * vd->dxyz[0]; in find_first_inter_point()
110 vd->xyz0[2] + vd->nxyz[2] * vd->dxyz[2]; in find_first_inter_point()
113 vd->xyz0[1] + vd->nxyz[1] * vd->dxyz[1]; in find_first_inter_point()
143 if ((point[0] > vd->xyz0[0] - EPSILON) && in find_first_inter_point()
145 (point[1] > vd->xyz0[1] - EPSILON) && in find_first_inter_point()
147 (point[2] > vd->xyz0[2] - EPSILON) && in find_first_inter_point()
340 ijk[0] = (int)((first_p[0] - vd->xyz0[0]) / vd->dxyz[0]); in find_first_inter()
341 ijk[2] = (int)((first_p[2] - vd->xyz0[2]) / vd->dxyz[2]); in find_first_inter()
344 ijk[0] = (int)((first_p[0] - vd->xyz0[0]) / vd->dxyz[0]); in find_first_inter()
[all …]
/dports/science/jmol/jmol-14.32.7/src/org/jmol/symmetry/
H A DSpaceGroup.java553 if (xyz0 == null || xyz0.length() < 3) { in addOperation()
557 boolean isSpecial = (xyz0.charAt(0) == '='); in addOperation()
559 xyz0 = xyz0.substring(1); in addOperation()
560 int id = checkXYZlist(xyz0); in addOperation()
563 if (xyz0.startsWith("x1,x2,x3,x4") && modDim == 0) { in addOperation()
566 modDim = PT.parseInt(xyz0.substring(xyz0.lastIndexOf("x") + 1)) - 3; in addOperation()
567 } else if (xyz0.indexOf("m") >= 0) { in addOperation()
569 xyz0 = PT.rep(xyz0, "+m", "m"); in addOperation()
570 if (xyz0.equals("x,y,z,m") || xyz0.equals("x,y,z(mx,my,mz)")) { in addOperation()
582 return addOp(op, xyz0, isSpecial); in addOperation()
[all …]
/dports/lang/racket/racket-8.3/share/pkgs/htdp-lib/2htdp/
H A Dabstraction.rkt66 ;; restrict for/xyz to simple form and name it for/xyz0
69 [(_ for/xyz0:id for/xyz:id) #'(define-for for/xyz0 for/xyz values)]
70 [(_ for/xyz0:id for/xyz:id cleanup:expr)
71 #'(define-syntax (for/xyz0 stx)
/dports/science/py-pygeodesy/PyGeodesy-21.9.16/pygeodesy/
H A Decef.py937 def rotate(self, xyz, *xyz0): argument
947 if xyz0:
948 if len(xyz0) != len(xyz):
949 raise LenError(self.rotate, xyz0=len(xyz0), xyz=len(xyz))
980 def unrotate(self, xyz, *xyz0): argument
990 if xyz0:
991 if len(xyz0) != len(xyz):
992 raise LenError(self.unrotate, xyz0=len(xyz0), xyz=len(xyz))
998 xyz_ = (fdot(_xyz, xyz0[0], *self._row_0),
999 fdot(_xyz, xyz0[1], *self._row_1),
[all …]
/dports/science/py-nibabel/nibabel-3.2.1/nibabel/tests/
H A Dtest_trackvis.py141 xyz0 = np.tile(np.arange(5).reshape(5, 1), (1, 3))
143 streams = [(xyz0, None, None), (xyz1, None, None)]
287 xyz0, xyz1 = f(ijk0), f(ijk1)
288 fancy_rasmm_streams = [(xyz0, scalars[0], None),
567 xyz0, xyz1 = f(ijk0), f(ijk1)
568 fancy_rasmm_streams = [(xyz0, None, None), (xyz1, None, None)]
596 xyz0 = np.tile(np.arange(5).reshape(5, 1), (1, 3))
598 streams = [(xyz0, None, None), (xyz1, None, None)]
611 short_streams = [(xyz0, None, None), (xyz1[:-1], None, None)]
/dports/audio/lenticular-lv2/lenticular_lv2-0.5.0-14-g14d8075/eurorack/plaits/dsp/engine/
H A Dwavetable_engine.cc177 float xyz0 = xy0z0 + (xy1z0 - xy0z0) * y_fractional; in Render() local
189 float mix = xyz0 + (xyz1 - xyz0) * z_fractional; in Render()
/dports/audio/surge-synthesizer-lv2/surge-release_1.9.0/libs/eurorack/eurorack/plaits/dsp/engine/
H A Dwavetable_engine.cc177 float xyz0 = xy0z0 + (xy1z0 - xy0z0) * y_fractional; in Render() local
189 float mix = xyz0 + (xyz1 - xyz0) * z_fractional; in Render()
/dports/science/v_sim/v_sim-3.8.0/lib/plug-ins/OpenBabel-wrapper/
H A Dob_basic.cpp120 float xyz[3], xyz0[3], red[3], rgba[4], length, lengthMin, lengthMax; in loadOpenBabelFile() local
245 xyz0[0] = xyz[0] = (float)a->GetX() + vect[0]; in loadOpenBabelFile()
246 xyz0[1] = xyz[1] = (float)a->GetY() + vect[1]; in loadOpenBabelFile()
247 xyz0[2] = xyz[2] = (float)a->GetZ() + vect[2]; in loadOpenBabelFile()
250 visu_box_convertFullToCell(box, xyz, xyz0); in loadOpenBabelFile()
/dports/math/py-matplotlib2/matplotlib-2.2.4/lib/mpl_toolkits/mplot3d/
H A Daxis3d.py267 xyz0 = []
271 xyz0.append(coord)
378 if len(xyz0) > 0:
380 xyz1 = copy.deepcopy(xyz0)
387 xyz2 = copy.deepcopy(xyz0)
393 lines = list(zip(xyz1, xyz0, xyz2))
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/src/Pipeline/
H A DSamplerCore.cpp2282 xyz0 |= outOfBounds; in address()
2327 xyz0 += offset; in address()
2332 xyz0 = (maxXYZ)-mirror(mod(xyz0, Int4(2) * dim) - dim); in address()
2412 xyz0 += offset; in address()
2417 xyz0 += Int4(1); in address()
2425 Int4 border0 = CmpLT(xyz0, Int4(0)) | CmpNLT(xyz0, dim); in address()
2427 xyz0 |= border0; in address()
2441 xyz0 = Min(Max(xyz0, Int4(0)), maxXYZ); in address()
2445 xyz0 = mod(xyz0, dim); in address()
2459 xyz0 = Max(xyz0, Int4(0)); in address()
[all …]
/dports/math/py-matplotlib/matplotlib-3.4.3/lib/mpl_toolkits/mplot3d/
H A Daxis3d.py246 xyz0 = np.tile(minmax, (len(ticks), 1))
247 xyz0[:, index] = [tick.get_loc() for tick in ticks]
353 lines = np.stack([xyz0, xyz0, xyz0], axis=1)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/tests/sksl/errors/
H A DSwizzleConstantOutput.sksl3 test.xyz0 = float4(1);
/dports/graphics/argyllcms/Argyll_V1.9.2/spectro/
H A Dillumread.c1028 double xyz0[3], xyz1[3]; in main() local
1080 icmLab2XYZ(&icmD50, xyz0, bf.lab0); in main()
1083 gain = xyz0[1] / xyz1[1]; in main()
1092 icmLab2XYZ(&icmD50, xyz0, bf.lab0); in main()
1095 printf("~1 Target XYZ %f %f %f, now %f %f %f\n",xyz0[0],xyz0[1],xyz0[2],xyz1[0],xyz1[1],xyz1[2]); in main()
1166 icmLab2XYZ(&icmD50, xyz0, cf.lab0); in main()
1169 tt[1] = xyz0[1] / xyz1[1]; in main()
/dports/science/afni/afni-AFNI_21.3.16/src/pkundu/meica.libs/nibabel/tests/
H A Dtest_trackvis.py129 xyz0 = np.tile(np.arange(5).reshape(5,1), (1, 3))
131 streams = [(xyz0, None, None), (xyz1, None, None)]
266 xyz0, xyz1 = f(ijk0), f(ijk1)
267 fancy_rasmm_streams = [(xyz0, None, None), (xyz1, None, None)]
566 xyz0, xyz1 = f(ijk0), f(ijk1)
567 fancy_rasmm_streams = [(xyz0, None, None), (xyz1, None, None)]
/dports/math/moab/fathomteam-moab-7bde9dfb84a8/test/mesquite/unit/
H A DGeomPrimTest.cpp402 const MsqPlane xyz0( Vector3D(1,1,1), 0.0 ); in test_sphere_intersect_plane() local
403 CPPUNIT_ASSERT(sphere.intersect( xyz0, result ) ); in test_sphere_intersect_plane()
404 if (xyz0.normal() % result.normal() > 0.0) in test_sphere_intersect_plane()
405 CPPUNIT_ASSERT_VECTORS_EQUAL( xyz0.normal(), result.normal(), 1e-6 ); in test_sphere_intersect_plane()
407 CPPUNIT_ASSERT_VECTORS_EQUAL( -xyz0.normal(), result.normal(), 1e-6 ); in test_sphere_intersect_plane()
/dports/sysutils/rsyslog8/rsyslog-8.2112.0/tests/testsuites/
H A Dstop_when_array_has_elem_input2 <167>Mar 6 16:57:54 172.20.245.8 %PIX-7-710005:@cee:{"foo": ["xyz0", "zab1", "abc2"]}
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/swiftshader/src/Pipeline/
H A DSamplerCore.cpp2295 xyz0 = As<Int4>(uvw); in address()
2336 xyz0 = Int4(floor); in address()
2345 xyz0 = (maxXYZ)-mirror(mod(xyz0, Int4(2) * dim) - dim); in address()
2402 xyz0 = Int4(coord); in address()
2418 xyz0 = Int4(floor); in address()
2429 xyz0 += Int4(1); in address()
2437 Int4 border0 = CmpLT(xyz0, Int4(0)) | CmpNLT(xyz0, dim); in address()
2439 xyz0 |= border0; in address()
2453 xyz0 = Min(Max(xyz0, Int4(0)), maxXYZ); in address()
2457 xyz0 = mod(xyz0, dim); in address()
[all …]
/dports/science/xtb/xtb-6.4.1/src/
H A Drelaxation_engine.f90198 real(wp), allocatable :: xyz0(:,:) local
335 xyz0 = molopt%xyz
344 call rmsd(molopt%n,xyz0,molopt%xyz,1,U,x_center,y_center,rmsdval,.false.,grmsd)
490 real(wp), allocatable :: xyz0(:,:) local
552 & hdiag(nat3), xyz0(3,mol%n), anc(nat3), xyzopt(3,mol%n), &
729 xyz0 = molopt%xyz
735 & chk,calc,energy,egap,gradient,sigma,nvar,hdiag,trafo,anc,xyz0, &
740 call rmsd(molopt%n,xyz0,molopt%xyz,1,U,x_center,y_center,rmsdval,.false.,grmsd)
869 & chk,calc,energy,egap,g_xyz,sigma,nvar,hdiag,trafo,anc,xyz0, & argument
924 real(wp), intent(in) :: xyz0(:,:) local
[all …]
H A Dconstrain_pot.f90336 real(wp),intent(in) :: xyz0(3,n) local
348 xyz = xyz0
358 xyz(ic,ia)=xyz0(ic,ia)+step
361 xyz(ic,ia)=xyz0(ic,ia)-step
364 xyz(ic,ia)=xyz0(ic,ia)
/dports/graphics/graphene/graphene-1.10.6/tests/
H A Dvec3.c384 graphene_vec4_t xyz0, xyz1, xyzw, check4; in vectors_vec3_conversion() local
391 graphene_vec3_get_xyz0 (&v, &xyz0); in vectors_vec3_conversion()
393 mutest_bool_value (graphene_vec4_equal (&xyz0, &check4)), in vectors_vec3_conversion()
/dports/science/libint2/libint-2.7.1/include/libint2/
H A Dengine.impl.h384 for (auto xyz0 = 0; xyz0 != 3; ++xyz0) { in compute1() local
385 const auto coord0 = c0 * 3 + xyz0; in compute1()
418 for (auto xyz0 = 0; xyz0 != 3; ++xyz0) { in compute1() local
419 const auto coord0 = c0 * 3 + xyz0; in compute1()
420 for (auto xyz1 = xyz0; xyz1 != 3; ++xyz1) { in compute1()
429 auto coord0_A = xyz0; in compute1()
439 auto coord0_A = xyz0; in compute1()
449 auto coord0_B = 3 + xyz0; in compute1()
459 auto coord0_B = 3 + xyz0; in compute1()
/dports/sysutils/goawk/goawk-1.9.2/testdata/
H A DT.sub161 00 xyz0 xyzxyz
169 00 xyz0 xyz0
/dports/lang/yorick/yorick-y_2_2_04/hex/
H A Dtest.i132 extern xyz0, ray0, mesh, s, topo; in flog()
138 xyz0= matrix(,+)*xyz(+,..); in flog()
140 mesh= hex_mesh2(xyz0,bndy); in flog()
200 xyz0= p + q*sc(-,,);
201 cell= digitize(xyz0(1,,), x);
214 y= digitize(xyz0(2,,), y);
228 z= digitize(xyz0(3,,), z);
/dports/misc/openvdb/openvdb-9.0.0/openvdb/openvdb/unittest/
H A DTestRay.cc142 Vec3T xyz0[3] = {ray0.start(), ray0.mid(), ray0.end()}; in TEST_F() local
152 for (int j=0; j<3; ++j) ASSERT_DOUBLES_APPROX_EQUAL(xyz0[i][j], pos[j]); in TEST_F()
178 for (int j=0; j<3; ++j) ASSERT_DOUBLES_APPROX_EQUAL(xyz0[i][j], xyz2[i][j]); in TEST_F()

123