Home
last modified time | relevance | path

Searched refs:new_polys (Results 1 – 12 of 12) sorted by relevance

/dports/math/vtk6/VTK-6.2.0/IO/Geometry/
H A DvtkOBJReader.cxx570 vtkCellArray *new_polys = vtkCellArray::New(); in RequestData() local
622 new_polys->InsertNextCell(n_pts,pts); in RequestData()
628 output->SetPolys(new_polys); in RequestData()
643 new_polys->Delete(); in RequestData()
/dports/misc/vxl/vxl-3.3.2/contrib/gel/vsol/
H A Dvsol_poly_set_2d.cxx22 vsol_poly_set_2d::vsol_poly_set_2d(const std::vector<vsol_polygon_2d_sptr> &new_polys) in vsol_poly_set_2d() argument
25 storage_=new std::vector<vsol_polygon_2d_sptr>(new_polys); in vsol_poly_set_2d()
H A Dvsol_poly_set_2d.h61 vsol_poly_set_2d(std::vector<vsol_polygon_2d_sptr> const& new_polys);
/dports/math/vtk8/VTK-8.2.0/IO/Import/
H A DvtkOBJImporter.cxx927 vtkCellArray *new_polys = vtkCellArray::New(); in RequestData() local
979 new_polys->InsertNextCell(n_pts,pts); in RequestData()
985 output->SetPolys(new_polys); in RequestData()
989 << new_polys->GetNumberOfCells() << " ..."); in RequestData()
1006 new_polys->Delete(); in RequestData()
/dports/math/vtk9/VTK-9.1.0/IO/Import/
H A DvtkOBJImporter.cxx983 vtkCellArray* new_polys = vtkCellArray::New(); in RequestData() local
1053 new_polys->InsertNextCell(tmpCell); in RequestData()
1059 output->SetPolys(new_polys); in RequestData()
1061 vtkDebugMacro(" set new polys, count = " << new_polys->GetNumberOfCells() << " ..."); in RequestData()
1078 new_polys->Delete(); in RequestData()
/dports/math/vtk8/VTK-8.2.0/IO/Geometry/
H A DvtkOBJReader.cxx826 vtkCellArray *new_polys = vtkCellArray::New(); in RequestData() local
893 new_polys->InsertNextCell(n_pts,pts); in RequestData()
903 output->SetPolys(new_polys); in RequestData()
938 new_polys->Delete(); in RequestData()
/dports/math/gambit/gambit-16.0.1/src/tools/enumpoly/
H A Dgpolylst.imp400 Gambit::List<gPoly<T> > new_polys;
402 new_polys.Append((*this)[i].TranslateOfPoly(new_origin));
406 return gPolyList<T>(AmbientSpace(),TermOrder(),new_polys);
412 Gambit::List<gPoly<T> > new_polys;
416 new_polys.Append((*this)[i].PolyInNewCoordinates(M));
418 return gPolyList<T>(AmbientSpace(),TermOrder(),new_polys);
/dports/math/vtk9/VTK-9.1.0/IO/Geometry/
H A DvtkOBJReader.cxx902 vtkCellArray* new_polys = vtkCellArray::New(); in RequestData() local
986 new_polys->InsertNextCell(tmpCell); in RequestData()
996 output->SetPolys(new_polys); in RequestData()
1035 new_polys->Delete(); in RequestData()
/dports/cad/electric/electric-7.00/src/misc/
H A Dcompact.c1683 REGISTER COMPPOLYLIST *new_polys; in com_add_poly_polylist() local
1685 new_polys = (COMPPOLYLIST *)emalloc((sizeof(COMPPOLYLIST)), com_tool->cluster); in com_add_poly_polylist()
1686 if (new_polys == 0) return; in com_add_poly_polylist()
1687 new_polys->poly = poly; in com_add_poly_polylist()
1688 new_polys->tech = tech; in com_add_poly_polylist()
1689 new_polys->networknum = networknum; in com_add_poly_polylist()
1690 new_polys->nextpolylist = object->firstpolylist; in com_add_poly_polylist()
1691 object->firstpolylist = new_polys; in com_add_poly_polylist()
/dports/cad/repsnapper/repsnapper-2.5a4/src/
H A Dmodel_slice.cpp352 int new_polys=0; in Slice() local
366 new_polys = layer->addShape(transforms[currentshape], *shapes[currentshape], in Slice()
381 if (new_polys > -1){ in Slice()
392 if (new_polys > -1){ in Slice()
/dports/games/avp/avp-20170505/src/win95/
H A Dchnkload.cpp3153 ChunkPoly * new_polys = new ChunkPoly [shp.num_polys]; in merge_polygons_in_chunkshape() local
3160 new_polys[p_no] = shp.poly_list[i]; in merge_polygons_in_chunkshape()
3161 new_polys[p_no].normal_index = p_no; in merge_polygons_in_chunkshape()
3211 new_polys[p_no] = p; in merge_polygons_in_chunkshape()
3217 new_polys[p_no] = shp.poly_list[i]; in merge_polygons_in_chunkshape()
3218 new_polys[p_no].normal_index = p_no; in merge_polygons_in_chunkshape()
3222 new_polys[p_no] = shp.poly_list[mgd[i]]; in merge_polygons_in_chunkshape()
3223 new_polys[p_no].normal_index = p_no; in merge_polygons_in_chunkshape()
3233 shp.poly_list = new_polys; in merge_polygons_in_chunkshape()
/dports/cad/py-gdspy/gdspy-1.6.8/gdspy/
H A Dpolygon.py143 new_polys = []
146 new_polys.append(pts * ca + pts[:, ::-1] * sa + c0)
147 self.polygons = new_polys