Home
last modified time | relevance | path

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

/dports/misc/vxl/vxl-3.3.2/contrib/brl/bbas/bwm/algo/
H A Dbwm_algo.cxx31 void bwm_algo::get_vertices_xy(vsol_polygon_2d_sptr poly2d, in get_vertices_xy() argument
34 int n = poly2d->size(); in get_vertices_xy()
38 (*x)[i] = (float) poly2d->vertex(i)->x(); in get_vertices_xy()
39 (*y)[i] = (float) poly2d->vertex(i)->y(); in get_vertices_xy()
45 void bwm_algo::get_vertices_xy(vsol_polygon_2d_sptr poly2d, in get_vertices_xy() argument
48 int n = poly2d->size(); in get_vertices_xy()
52 (*x)[i] = (double) poly2d->vertex(i)->x(); in get_vertices_xy()
53 (*y)[i] = (double) poly2d->vertex(i)->y(); in get_vertices_xy()
62 int n = poly2d->size(); in get_vertices_xy()
66 (*x)[i] = (float) poly2d->vertex(i)->x(); in get_vertices_xy()
[all …]
H A Dbwm_algo.h27 static void get_vertices_xy(vsol_polygon_2d_sptr poly2d, float **x, float **y);
29 static void get_vertices_xy(vsol_polygon_2d_sptr poly2d, double **x, double **y);
31 static void get_vertices_xy(vsol_polyline_2d_sptr poly2d, float **x, float **y);
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bbas/bwm/
H A Dbwm_observer_img.cxx196 bwm_algo::get_vertices_xy(poly2d, &x, &y); in create_polygon()
197 unsigned nverts = poly2d->size(); in create_polygon()
221 bwm_algo::get_vertices_xy(poly2d, &x, &y); in create_polyline()
222 unsigned nverts = poly2d->size(); in create_polyline()
482 if (poly2d->size() == 3) { in delete_vertex()
487 if (i >= poly2d->size()) { in delete_vertex()
493 for (unsigned k=0; k < poly2d->size(); k++) { in delete_vertex()
509 if (poly2d->size() == 2) { in delete_vertex()
514 if (i >= poly2d->size()) { in delete_vertex()
520 for (unsigned k=0; k < poly2d->size(); k++) { in delete_vertex()
[all …]
H A Dbwm_tableau_img.cxx66 vsol_polygon_2d_sptr poly2d; in create_polygon() local
68 pick_polygon(poly2d); in create_polygon()
69 if (!poly2d) in create_polygon()
77 my_observer_->create_polygon(poly2d); in create_polygon()
86 vsol_polyline_2d_sptr poly2d; in create_polyline() local
88 this->pick_polyline(poly2d); in create_polyline()
89 if (!poly2d) in create_polyline()
97 my_observer_->create_polyline(poly2d); in create_polyline()
H A Dbwm_observer_cam.h112 virtual void backproj_poly(vsol_polygon_2d_sptr poly2d, in backproj_poly() argument
114 backproj_poly(poly2d, poly3d, proj_plane_); in backproj_poly()
118 void backproj_poly(vsol_polygon_2d_sptr poly2d,
129 vsol_polygon_2d_sptr& poly2d);
276 bool backproj_poly(vsol_polygon_2d_sptr poly2d,
H A Dbwm_tableau_cam.cxx52 vsol_polygon_2d_sptr poly2d; in create_polygon_mesh() local
54 pick_polygon(poly2d); in create_polygon_mesh()
55 if (! poly2d) { in create_polygon_mesh()
65 my_observer_->backproj_poly(poly2d, poly3d); in create_polygon_mesh()
87 vsol_polygon_2d_sptr poly2d; in create_circular_polygon() local
169 vsol_polygon_2d_sptr poly2d; in create_inner_face() local
171 pick_polygon(poly2d); in create_inner_face()
172 my_observer_->connect_inner_face(poly2d); in create_inner_face()
364 vsol_polygon_2d_sptr poly2d; in create_terrain()
366 pick_polygon(poly2d); in create_terrain()
H A Dbwm_observer_cam.cxx607 poly2d = new vsol_polygon_2d (vertices); in proj_poly()
621 backproj_poly(poly2d, poly3d, proj_plane); in create_circular_polygon()
971 backproj_poly(poly2d, poly3d, plane);
1240 backproj_poly(poly2d, poly3d, trans_plane); in backproj_poly()
1250 for (unsigned i=0; i<poly2d->size(); i++) { in backproj_poly()
1693 vgl_polygon<double> poly2d(1); in project_meshes() local
1697 poly2d.push_back(u,v); in project_meshes()
1699 poly_2d_list.push_back(poly2d); in project_meshes()
1718 vgl_polygon<double> poly2d(1); in bwm_project_meshes() local
1722 poly2d.push_back(u,v); in bwm_project_meshes()
[all …]
H A Dbwm_observer_vgui.h78 vsol_polygon_2d_sptr& poly2d) = 0;
86 virtual void backproj_poly(vsol_polygon_2d_sptr poly2d,
H A Dbwm_observer_video.cxx1029 vsol_polygon_2d_sptr& poly2d) in proj_poly() argument
1034 poly2d = nullptr; in proj_poly()
1038 bwm_observer_cam::proj_poly(poly3d, poly2d); in proj_poly()
1071 unsigned bwm_observer_video::create_polygon(vsol_polygon_2d_sptr poly2d) in create_polygon() argument
1076 bwm_algo::get_vertices_xy(poly2d, &x, &y); in create_polygon()
1077 unsigned nverts = poly2d->size(); in create_polygon()
1080 bgui_vsol_soview2D_polygon* polygon = this->add_vsol_polygon_2d(poly2d); in create_polygon()
1096 poly2d->set_id(polygon->get_id()); in create_polygon()
1097 this->frame_polygon_map_[frame].push_back(poly2d); in create_polygon()
H A Dbwm_observer_fiducial.h60 virtual void backproj_poly(vsol_polygon_2d_sptr poly2d, in backproj_poly() argument
H A Dbwm_observer_video.h58 vsol_polygon_2d_sptr& poly2d);
H A Dbwm_observer_vgui.cxx542 void bwm_observer_vgui::connect_inner_face(vsol_polygon_2d_sptr poly2d) in connect_inner_face() argument
553 backproj_poly(poly2d, poly3d); in connect_inner_face()
/dports/science/gnudatalanguage/gdl-1.0.1/src/
H A Dmath_fun_jmg.hpp30 } poly2d ; typedef
65 double poly2d_compute(poly2d *p, double x, double y);
H A Dmath_fun_jmg.cpp1112 poly2d* poly_u,
1113 poly2d* poly_v,
1175 poly2d* poly_u,
1176 poly2d* poly_v,
1317 poly2d* poly_u,
1318 poly2d* poly_v,
1565 poly2d* poly_u;
1566 poly2d* poly_v;
1568 poly_u = (poly2d *) malloc(sizeof (poly2d));
1580 poly_v = (poly2d *) malloc(sizeof (poly2d));
[all …]
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/stats/
H A Dtabledist.py119 def poly2d(self): member in TableDist
122 poly2d = interp2d(self.size, self.alpha, self.crit_table)
123 return poly2d
/dports/math/mfem/mfem-4.3/tests/unit/fem/
H A Dtest_intrules.cpp100 double poly2d(const IntegrationPoint &ip, int m, int n) in poly2d() function
155 integral += ip.weight*poly2d(ip, m, n);
/dports/cad/opencascade/opencascade-7.6.0/src/MeshTest/
H A DMeshTest_PluginCommands.cxx390 Handle(Poly_Polygon2D) poly2d = new Poly_Polygon2D (pnts2d); in tricheck()
391 DrawTrSurf::Set (name, poly2d); in tricheck()
606 Handle(Poly_Polygon2D) poly2d = new Poly_Polygon2D (pnts2d); in tricheck()
607 DrawTrSurf::Set (name, poly2d); in tricheck()
/dports/misc/vxl/vxl-3.3.2/core/vgl/algo/
H A Dvgl_intersection.hxx267 vgl_polygon<T> poly2d(1); // with one sheet in vgl_intersection() local
275 poly2d.push_back(pi.get(0,0), pi.get(1,0)); in vgl_intersection()
284 return poly2d.contains(ci.get(0,0),ci.get(1,0)); in vgl_intersection()
/dports/cad/openscad/openscad-41f58fe57c03457a3a8b4dc541ef5654ec3e8c78/src/
H A Dcgalutils.cc250 else if (auto poly2d = dynamic_cast<const Polygon2d*>(&geom)) { in createNefPolyhedronFromGeometry() local
251 return createNefPolyhedronFromPolygon2d(*poly2d); in createNefPolyhedronFromGeometry()
/dports/cad/openscad-devel/openscad-63a7c77740030c63d646eb0684ba6947eecb0db7/src/
H A Dcgalutils.cc250 else if (auto poly2d = dynamic_cast<const Polygon2d*>(&geom)) { in createNefPolyhedronFromGeometry() local
251 return createNefPolyhedronFromPolygon2d(*poly2d); in createNefPolyhedronFromGeometry()
/dports/graphics/argyllcms/Argyll_V1.9.2/render/
H A Drender.h133 }; typedef struct _poly2d poly2d; typedef
H A Drender.c1396 poly2d *s = (poly2d *)ss; in poly2d_rend()
1424 poly2d *s; in new_poly2d()
1430 if ((s = (poly2d *)calloc(1, sizeof(poly2d) + (n-1) * 2 * sizeof(double))) == NULL) { in new_poly2d()
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/segv/
H A Dsegv_vil_segmentation_manager.cxx1834 vsol_polygon_2d_sptr poly2d; in create_polygon() local
1835 ptab->pick_polygon(poly2d); in create_polygon()
1836 if (!poly2d) in create_polygon()
1847 mask_.push_back(poly2d); in create_polygon()
/dports/textproc/sphinxsearch/sphinx-2.2.11-release/test/test_125/
H A Dmodel.bin1poly2d(1,2,3,4,5,6.0),2,3)";s:1:"1";s:39:"contains(poly2d(1.0,1+1,aa,4,5,6),22,3)";s:1:"0";}}}i:20…
/dports/math/sleef/sleef-3.5.0/src/quad/
H A Dsleefsimdqp.c626 static INLINE CONST vdouble poly2d(vdouble x, double c1, double c0) { return mla(x, vcast_vd_d(c1),… in poly2d() function
627 …e c2, double c1, double c0) { return mla(vmul_vd_vd_vd(x, x), vcast_vd_d(c2), poly2d(x, c1, c0)); } in poly3d()
629 return mla(vmul_vd_vd_vd(x, x), poly2d(x, c3, c2), poly2d(x, c1, c0)); in poly4d()
635 …return mla(vmul_vd_vd_vd(vmul_vd_vd_vd(x, x),vmul_vd_vd_vd(x, x)), poly2d(x, c5, c4), poly4d(x, c3… in poly6d()