Home
last modified time | relevance | path

Searched refs:numholes (Results 1 – 25 of 62) sorted by relevance

123

/dports/games/golddig/golddigC3.1/
H A Dmovement.c16 int numholes; /* Total number of holes */ variable
188 if(numholes >= MAXHOLE)
193 holes[numholes].x = x;
194 holes[numholes].y = y;
195 holes[numholes].ticmade = curtick;
196 numholes ++;
211 for(i=0;i<numholes;++i)
219 holes[i] = holes[numholes - 1];
220 numholes --;
231 for(i=0;i<numholes;++i) { in change_holes()
H A Dgolddig.c32 extern int numholes; /* Total number of holes */
159 numholes = 0; in init_level()
/dports/devel/vcglib/vcglib-2020.09/apps/unsupported/trimeshinfo/
H A Dtrimeshinfo.cpp244 int count_e,boundary_e,count_fd,count_uv,numholes; member
337 mi.numholes = 0; in initMeshInfo()
364 printf(" Number of holes/boundaries: %d \n", mi.numholes); in PrintMeshInfo()
391 if ((mi.VManifold && mi.FManifold )&&(mi.Oriented)&&(!mi.numholes)) in PrintMeshInfo()
467 sprintf(s,"%d",mi.numholes); in SaveXMLInfo()
549 fout << " <td>" << mi.numholes << "</td>" << std::endl; in SaveMeshInfoHtmlTable()
795 mi.numholes = tri::Clean<CMesh>::CountHoles(m); in main()
796 tri::Clean<CMesh>::CountEdges(m, mi.BEdges,mi.numholes); in main()
815 if ((mi.VManifold && mi.FManifold)&&(mi.Oriented)&&(!mi.numholes)) in main()
828 mi.Genus = tri::Clean<CMesh>::MeshGenus(m, mi.numholes, in main()
/dports/astro/gnuastro/gnuastro-0.16/lib/
H A Dbinary.c838 size_t *numholes) in gal_binary_holes_label() argument
857 *numholes=gal_binary_connected_components(inv, &holelabs, connectivity); in gal_binary_holes_label()
858 *numholes -= 1; in gal_binary_holes_label()
939 size_t numholes, *sizes; in gal_binary_holes_fill() local
958 numholes=gal_binary_connected_components(inv, &holelabs, connectivity); in gal_binary_holes_fill()
973 sizes=gal_pointer_allocate(GAL_TYPE_SIZE_T, numholes+1, 1, __func__, in gal_binary_holes_fill()
/dports/astro/gnuastro/gnuastro-0.16/lib/gnuastro/
H A Dbinary.h109 size_t *numholes);
/dports/games/xconq/xconq-7.5.0-0pre.0.20050612/kernel/
H A Dmkterr.c80 static int numholes; variable
155 if (numholes > 0) { in make_fractal_terrain()
157 numholes, t_type_name(0)); in make_fractal_terrain()
338 numholes = 0; in compose_area()
438 ++numholes; in terrain_from_percentiles()
711 if (numholes > 0) { in make_earthlike_fractal_terrain()
713 numholes, t_type_name(0)); in make_earthlike_fractal_terrain()
730 numholes = 0; in compose_earthlike_area()
789 ++numholes; in earthlike_terrain_from_percentiles()
/dports/games/openbor/openbor-3caaddd5/engine/source/openborscript/
H A Dlevel.c498 (*pretvar)->lVal = (LONG)handle->numholes; in openbor_get_level_property()
1140 handle->numholes = temp_int; in openbor_set_level_property()
1879 && ltemp >= 0 && ltemp < level->numholes) in openbor_getlevelproperty()
2329 if(ltemp >= level->numholes) in openbor_changelevelproperty()
2331 __reallocto(level->holes, level->numholes, ltemp + 1); in openbor_changelevelproperty()
2332 level->numholes = ltemp + 1; in openbor_changelevelproperty()
/dports/graphics/wdune/wdune-1.926/vcglib/vcg/complex/algorithms/
H A Dclean.h1133 static int MeshGenus(int nvert,int nedges,int nfaces, int numholes, int numcomponents) in MeshGenus() argument
1135 return -((nvert + nfaces - nedges + numholes - 2 * numcomponents) / 2); in MeshGenus()
1144 int numholes=CountHoles(m); in MeshGenus() local
1146 int G=MeshGenus(nvert,total_e,nfaces,numholes,numcomponents); in MeshGenus()
H A Dvoronoi_processing.h1536 int numholes=tri::Clean<MeshType>::CountHoles(rm); in CheckVoronoiTopology() local
1537 if (numholes!=1) in CheckVoronoiTopology()
/dports/devel/vcglib/vcglib-2020.09/vcg/complex/algorithms/
H A Dclean.h1351 static int MeshGenus(int nvert,int nedges,int nfaces, int numholes, int numcomponents) in MeshGenus() argument
1353 return -((nvert + nfaces - nedges + numholes - 2 * numcomponents) / 2); in MeshGenus()
1362 int numholes=CountHoles(m); in MeshGenus() local
1364 int G=MeshGenus(nvert,total_e,nfaces,numholes,numcomponents); in MeshGenus()
H A Dvoronoi_processing.h1521 int numholes=tri::Clean<MeshType>::CountHoles(rm); in CheckVoronoiTopology() local
1522 if (numholes!=1) in CheckVoronoiTopology()
/dports/games/openbor3482/openbor-2c1ecd7/engine/
H A Dopenbor.c9206 if(level->numholes >= LEVEL_MAX_HOLES) { in load_level()
9210 level->holes[level->numholes][0] = GET_FLOAT_ARG(1); in load_level()
9218 if(!level->holes[level->numholes][1]) level->holes[level->numholes][1] = 240; in load_level()
9219 if(!level->holes[level->numholes][2]) level->holes[level->numholes][2] = 12; in load_level()
9220 if(!level->holes[level->numholes][3]) level->holes[level->numholes][3] = 1; in load_level()
9221 if(!level->holes[level->numholes][4]) level->holes[level->numholes][4] = 200; in load_level()
9222 if(!level->holes[level->numholes][5]) level->holes[level->numholes][5] = 287; in load_level()
9223 if(!level->holes[level->numholes][6]) level->holes[level->numholes][6] = 45; in load_level()
9224 level->numholes++; in load_level()
11336 for(i=0, c=0; i<level->numholes; i++) in checkholes()
[all …]
H A Dopenbor.h1543 int numholes; member
/dports/games/openbor3711/openbor-6ec17fa/engine/
H A Dopenbor.c9345 if(level->numholes >= LEVEL_MAX_HOLES) { in load_level()
9349 level->holes[level->numholes][0] = GET_FLOAT_ARG(1); in load_level()
9357 if(!level->holes[level->numholes][1]) level->holes[level->numholes][1] = 240; in load_level()
9358 if(!level->holes[level->numholes][2]) level->holes[level->numholes][2] = 12; in load_level()
9359 if(!level->holes[level->numholes][3]) level->holes[level->numholes][3] = 1; in load_level()
9360 if(!level->holes[level->numholes][4]) level->holes[level->numholes][4] = 200; in load_level()
9361 if(!level->holes[level->numholes][5]) level->holes[level->numholes][5] = 287; in load_level()
9362 if(!level->holes[level->numholes][6]) level->holes[level->numholes][6] = 45; in load_level()
9363 level->numholes++; in load_level()
11545 for(i=0, c=0; i<level->numholes; i++) in checkholes()
[all …]
H A Dopenbor.h1568 int numholes;
/dports/games/openbor4432/openbor-ba1eb4f/engine/
H A Dopenbor.c1322 var->lVal = level->numholes; in getsyspropertybyindex()
13862 __realloc(level->holes, level->numholes); in addhole()
13863 level->holes[level->numholes].x = x; in addhole()
13864 level->holes[level->numholes].z = z; in addhole()
13871 level->holes[level->numholes].type = type; in addhole()
13873 level->numholes++; in addhole()
18327 for(i = 0; i < level->numholes; i++) in checkhole()
18364 for(i = 0; i < level->numholes; i++) in checkhole_in()
18392 for(i = 0; i < level->numholes; i++) in checkholeindex_in()
18414 for(i = 0; i < level->numholes; i++) in checkhole_index()
[all …]
H A Dopenbor.h2365 int numholes; member
/dports/games/openbor3979/openbor-2bcf25b/engine/
H A Dopenbor.h1599 int numholes; member
H A Dopenbor.c12088 __realloc(level->holes, level->numholes); in addhole()
12089 level->holes[level->numholes][0] = x; in addhole()
12090 level->holes[level->numholes][1] = z; in addhole()
12091 level->holes[level->numholes][2] = x1; in addhole()
12092 level->holes[level->numholes][3] = x2; in addhole()
12093 level->holes[level->numholes][4] = x3; in addhole()
12094 level->holes[level->numholes][5] = x4; in addhole()
12095 level->holes[level->numholes][6] = depth; in addhole()
12096 level->numholes++; in addhole()
15812 for(i = 0; i < level->numholes; i++) in checkhole()
[all …]
/dports/games/openbor/openbor-3caaddd5/engine/
H A Dopenbor.c14438 __realloc(level->holes, level->numholes); in addhole()
14439 level->holes[level->numholes].x = x; in addhole()
14440 level->holes[level->numholes].z = z; in addhole()
14446 level->holes[level->numholes].height = alt; in addhole()
14447 level->holes[level->numholes].type = type; in addhole()
14449 level->numholes++; in addhole()
18958 for(i = 0, c = 0; i < level->numholes; i++) in checkholes()
18976 for(i = 0; i < level->numholes; i++) in checkhole()
19013 for(i = 0; i < level->numholes; i++) in checkhole_in()
19041 for(i = 0; i < level->numholes; i++) in checkholeindex_in()
[all …]
H A Dopenbor.h2875 int numholes; member
/dports/databases/postgis25/postgis-2.5.5/doc/po/ja/
H A Dreference_accessor.xml.po3259 "SELECT gid, field1, field2, ST_NumInteriorRings(the_geom) AS numholes\n"
3265 "SELECT gid, field1, field2, SUM(ST_NumInteriorRings(the_geom)) AS numholes\n"
3271 "SELECT gid, field1, field2, ST_NumInteriorRings(the_geom) AS numholes\n"
3275 "SELECT gid, field1, field2, SUM(ST_NumInteriorRings(the_geom)) AS numholes\n"
/dports/databases/postgis25/postgis-2.5.5/doc/po/ko_KR/
H A Dreference_accessor.xml.po3264 "SELECT gid, field1, field2, ST_NumInteriorRings(the_geom) AS numholes\n"
3270 "SELECT gid, field1, field2, SUM(ST_NumInteriorRings(the_geom)) AS numholes\n"
3276 "SELECT gid, field1, field2, ST_NumInteriorRings(the_geom) AS numholes\n"
3281 "SELECT gid, field1, field2, SUM(ST_NumInteriorRings(the_geom)) AS numholes\n"
/dports/databases/postgis30/postgis-3.0.4/doc/po/ko_KR/
H A Dreference_accessor.xml.po3510 "SELECT gid, field1, field2, ST_NumInteriorRings(the_geom) AS numholes\n"
3516 "SELECT gid, field1, field2, SUM(ST_NumInteriorRings(the_geom)) AS numholes\n"
3522 "SELECT gid, field1, field2, ST_NumInteriorRings(the_geom) AS numholes\n"
3527 "SELECT gid, field1, field2, SUM(ST_NumInteriorRings(the_geom)) AS numholes\n"
/dports/databases/postgis31/postgis-3.1.4/doc/po/ko_KR/
H A Dreference_accessor.xml.po3507 "SELECT gid, field1, field2, ST_NumInteriorRings(the_geom) AS numholes\n"
3513 "SELECT gid, field1, field2, SUM(ST_NumInteriorRings(the_geom)) AS numholes\n"
3519 "SELECT gid, field1, field2, ST_NumInteriorRings(the_geom) AS numholes\n"
3524 "SELECT gid, field1, field2, SUM(ST_NumInteriorRings(the_geom)) AS numholes\n"

123