Home
last modified time | relevance | path

Searched refs:ply (Results 251 – 275 of 2491) sorted by relevance

1...<<11121314151617181920>>...100

/dports/games/py-pychess/pychess-1.0.2/lib/pychess/perspectives/database/
H A Dgamelist.py63 self.ply = 0
158 ply = rec["PlyCount"]
159 length = str(int(ply) // 2) if ply else ""
171 ply = plys.get(offs) if offs in plys else 0
172 self.records.append((rec, ply))
183 rec, ply = self.get_record(path)
/dports/games/py-pychess/pychess-1.0.2/lib/pychess/Players/
H A DICPlayer.py147 gameno, ply, curcol, lastmove, fen, wname, bname, wms, bms = item
148 log.debug("ICPlayer.makeMove got: %s %s %s %s" % (gameno, ply, curcol, lastmove))
149 self.gamemodel.update_board(gameno, ply, curcol, lastmove, fen, wname, bname, wms, bms)
159 if ply < board1.ply:
161 board1 = self.gamemodel.getBoardAtPly(max(ply - 1, 0))
163 id(self), self, ply, lastmove))
/dports/math/geogram/geogram-1.7.7/src/lib/geogram/third_party/PoissonRecon/unused/
H A DPlyPointStream.inl23 fprintf( stderr, "[ERROR] Failed to open ply file for reading: %s\n" , _fileName );
46 …fprintf( stderr , "[ERROR] Failed to find property in ply file: %s\n" , PlyOrientedVertex< Real >:…
59 fprintf( stderr , "[ERROR] Could not find vertices in ply file\n" );
120 fprintf( stderr, "[ERROR] Failed to open ply file for reading: %s\n" , _fileName );
143 …fprintf( stderr , "[ERROR] Failed to find property in ply file: %s\n" , PlyOrientedVertex< Real >:…
160 …fprintf( stderr , "[WARNING] Failed to find property in ply file: %s\n" , _dataProperties[i].name …
172 fprintf( stderr , "[ERROR] Could not find vertices in ply file\n" );
/dports/emulators/fs-uae/fs-uae-3.1.35/libfsemu/src/emu/
H A Dnetplay.c472 static void handle_player_tag_message(int ply, int data) { in handle_player_tag_message() argument
473 fs_emu_player *p = g_fs_emu_players + ply; in handle_player_tag_message()
478 fs_emu_log("received player tag for player %d: \"%s\"\n", ply, p->tag); in handle_player_tag_message()
528 int ply = (data & 0x00ff0000) >> 16; in handle_ext_message() local
529 if (ply < MAX_PLAYERS) { in handle_ext_message()
530 g_fs_emu_players[ply].ping = data & 0x0000ffff; in handle_ext_message()
535 int ply = (data & 0x00ff0000) >> 16; in handle_ext_message() local
536 if (ply < MAX_PLAYERS) { in handle_ext_message()
537 g_fs_emu_players[ply].lag = data & 0x0000ffff; in handle_ext_message()
/dports/cad/openctm/OpenCTM-1.0.3/tools/
H A DMakefile.linux43 MESHOBJS = mesh.o meshio.o ctm.o ply.o rply.o stl.o 3ds.o dae.o obj.o lwo.o off.o wrl.o
83 meshio.o: meshio.cpp common.h convoptions.h mesh.h ctm.h ply.h stl.h 3ds.h dae.h obj.h lwo.h off.h …
85 ply.o: ply.cpp ply.h mesh.h convoptions.h common.h
/dports/graphics/open3d/Open3D-0.2/docs/tutorial/Basic/
H A Dworking_with_numpy.rst33 write_point_cloud("../../TestData/sync.ply", pcd)
36 pcd_load = read_point_cloud("../../TestData/sync.ply")
57 write_point_cloud("../../TestData/sync.ply", pcd)
61 …be assigned or modified using NumPy. The script saves the point cloud as a ply file for the next s…
72 pcd_load = read_point_cloud("../../TestData/sync.ply")
/dports/graphics/py-open3d-python/Open3D-0.2/docs/tutorial/Basic/
H A Dworking_with_numpy.rst33 write_point_cloud("../../TestData/sync.ply", pcd)
36 pcd_load = read_point_cloud("../../TestData/sync.ply")
57 write_point_cloud("../../TestData/sync.ply", pcd)
61 …be assigned or modified using NumPy. The script saves the point cloud as a ply file for the next s…
72 pcd_load = read_point_cloud("../../TestData/sync.ply")
/dports/devel/py-PyUtilib/PyUtilib-6.0.0/pyutilib/ply/
H A D__init__.py10 from pyutilib.ply.ply import ply_init, t_newline, t_ignore, t_COMMENT, _find_column, p_error
/dports/games/jchessboard/JChessBoard-1.5/jchessboard/
H A DAI.java295 public int alphabeta(VirtualBoard vb, int ply, int depth, int qdepth, int alpha, int beta) { in alphabeta() argument
365 pos.score += histHeu[pos.lastFrom][pos.lastTo][ply + 1] * 10; // ply+1? in alphabeta()
389 score = -alphabeta(pos, ply + 1, 1, qdepth + 1, -beta, -alpha); in alphabeta()
391 score = -alphabeta(pos, ply + 1, depth - 1, 0, -beta, -alpha); in alphabeta()
412 histHeu[bestPos.lastFrom][bestPos.lastTo][ply]++; in alphabeta()
428 histHeu[bestPos.lastFrom][bestPos.lastTo][ply]++; in alphabeta()
464 int ply = 0; in work() local
483 final int thisPly = ply; in work()
505 score = -alphabeta(position, ply + 1, depth - 1, 0, -10000000, -alpha); in work()
/dports/games/phalanx/Phalanx-XXV/
H A Dsearch.c11 #define update_PV(move, ply) \ argument
14 PV[ply][ply] = move; \
15 for (jj = ply + 1; PV[ply + 1][jj].from; jj++) \
16 PV[ply][jj] = PV[ply + 1][jj]; \
17 PV[ply][jj].from = 0; /* end of copied line */ \
/dports/misc/vxl/vxl-3.3.2/contrib/cul/bundler/
H A Dbundler.cxx36 std::ofstream ply; in bundler_write_ply_file() local
37 ply.open(filename); in bundler_write_ply_file()
39 if ( !ply.is_open() ) { in bundler_write_ply_file()
45 ply << "ply\n" in bundler_write_ply_file()
57 ply << i->x() << ' ' in bundler_write_ply_file()
61 ply.close(); in bundler_write_ply_file()
/dports/print/scribus-devel/scribus-1.5.7/scribus/third_party/lib2geom/
H A Dpoly-laguerre-solve.h5 laguerre(Poly ply, const double tol=1e-10);
8 laguerre_real_interval(Poly ply,
/dports/science/cdcl/dcl-5.4.8-C/src/grph2/grpack/
H A Dgrsmpl.c18 /* Subroutine */ int grsmpl_(real *plx, real *ply, real *plrot) in grsmpl_() argument
23 sgrstx_("PLY", ply, (ftnlen)3); in grsmpl_()
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/meshlabplugins/io_pdb/
H A Dio_pdb.pro5 $$VCGDIR/wrap/ply/plylib.h
9 $$VCGDIR//wrap/ply/plylib.cpp\
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/src/osgPlugins/ply/
H A Dplyfile.cpp357 throw ply::MeshException( error ); in ply_describe_element()
505 throw ply::MeshException( error ); in ply_element_count()
543 throw ply::MeshException( error ); in ply_header_complete()
602 throw ply::MeshException( error ); in ply_put_element_setup()
1390 throw ply::MeshException( error ); in ply_get_other_element()
1582 if (ply == NULL) in ply_get_info()
1585 *version = ply->version; in ply_get_info()
1586 *file_type = ply->file_type; in ply_get_info()
1710 throw ply::MeshException( error ); in ascii_get_element()
1908 throw ply::MeshException( error ); in write_scalar_type()
[all …]
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/src/osgPlugins/ply/
H A Dplyfile.cpp357 throw ply::MeshException( error ); in ply_describe_element()
505 throw ply::MeshException( error ); in ply_element_count()
543 throw ply::MeshException( error ); in ply_header_complete()
602 throw ply::MeshException( error ); in ply_put_element_setup()
1381 throw ply::MeshException( error ); in ply_get_other_element()
1573 if (ply == NULL) in ply_get_info()
1576 *version = ply->version; in ply_get_info()
1577 *file_type = ply->file_type; in ply_get_info()
1701 throw ply::MeshException( error ); in ascii_get_element()
1899 throw ply::MeshException( error ); in write_scalar_type()
[all …]
/dports/games/py-pychess/pychess-1.0.2/lib/pychess/ic/managers/
H A DBoardManager.py346 ply = 0
861 ply = int(moveno) * 2 - 2
863 moves[ply] = wmove
875 moves[ply + 1] = bmove
884 times[ply + 1] = "%01d:%02d:%02d.%03d" % (
894 moves[ply - 1] = lastmove
897 if moveply > ply - 1:
944 for ply, move in moves:
945 if ply % 2 == 0:
946 pgn += "%d. " % (ply // 2 + 1)
[all …]
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/plugins_experimental/io_3dcoform/
H A Dio_3dcoform.pro5 $$VCGDIR/wrap/ply/plylib.h
9 $$VCGDIR/wrap/ply/plylib.cpp
/dports/sysutils/syslog-ng/syslog-ng-3.35.1/modules/python/pylib/syslogng/debuggercli/
H A Dlexertoken.py24 import ply.lex
27 class LexerToken(ply.lex.LexToken):
/dports/games/p5-Games-AlphaBeta/Games-AlphaBeta-v0.4.7/t/
H A D01_Games-AlphaBeta.t53 can_ok($g, qw/abmove ply/);
61 is($g->ply(3), 2, "set & read ply");
/dports/games/scid/scid/engines/phalanx-scid/
H A Dsearch.c15 #define update_PV( move, ply ) \ argument
17 PV[ply][ply] = move; \
18 for(j=ply+1;PV[ply+1][j].from;j++) PV[ply][j] = PV[ply+1][j]; \
19 PV[ply][j].from = 0; /* end of copied line */ \
/dports/graphics/open3d/Open3D-0.2/docs/tutorial/Advanced/
H A Dcolor_map_optimization.rst42 mesh = read_triangle_mesh(os.path.join(path, "scene", "integrated.ply"))
51 "color_map_before_optimization.ply"), mesh)
53 # Optimize texture and save the mesh as texture_mapped.ply
63 "color_map_after_optimization.ply"), mesh)
96 mesh = read_triangle_mesh(os.path.join(path, "scene", "integrated.ply"))
107 "color_map_before_optimization.ply"), mesh)
129 "color_map_after_optimization.ply"), mesh)
/dports/graphics/py-open3d-python/Open3D-0.2/docs/tutorial/Advanced/
H A Dcolor_map_optimization.rst42 mesh = read_triangle_mesh(os.path.join(path, "scene", "integrated.ply"))
51 "color_map_before_optimization.ply"), mesh)
53 # Optimize texture and save the mesh as texture_mapped.ply
63 "color_map_after_optimization.ply"), mesh)
96 mesh = read_triangle_mesh(os.path.join(path, "scene", "integrated.ply"))
107 "color_map_before_optimization.ply"), mesh)
129 "color_map_after_optimization.ply"), mesh)
/dports/devel/py-phply/phply-1.2.5/
H A DREADME.md25 If you're conservative, it's pronounced "pee aich ply". If you're liberal,
52 Phply relies on `ply` to generate and cache some tables required for the parser.
53 These have been generated with the latest available version of ply for the phply
54 release. If you installed phply under a different user and a new `ply` was
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/plugins_experimental/filter_3dcoform/
H A Dfilter_3dcoform.pro6 $$VCGDIR/wrap/ply/plylib.h
11 $$VCGDIR//wrap/ply/plylib.cpp

1...<<11121314151617181920>>...100