Home
last modified time | relevance | path

Searched refs:cast_to_vertex (Results 1 – 24 of 24) sorted by relevance

/dports/misc/vxl/vxl-3.3.2/contrib/gel/vtol/tests/
H A Dtest_block.cxx23 v_list1.push_back(v1->cast_to_vertex()); in test_block()
24 v_list1.push_back(v2->cast_to_vertex()); in test_block()
25 v_list1.push_back(v3->cast_to_vertex()); in test_block()
26 v_list1.push_back(v4->cast_to_vertex()); in test_block()
37 v_list2.push_back(v5->cast_to_vertex()); in test_block()
38 v_list2.push_back(v6->cast_to_vertex()); in test_block()
39 v_list2.push_back(v7->cast_to_vertex()); in test_block()
40 v_list2.push_back(v8->cast_to_vertex()); in test_block()
H A Dtest_vertex_2d.cxx54 vtol_vertex_sptr ve = to->cast_to_vertex(); in test_vertex_2d()
113 TEST("vtol_vertex_2d::cast_to_vertex()", v1->cast_to_vertex()==nullptr, false); in test_vertex_2d()
127 vtol_vertex_sptr v1v = v1->cast_to_vertex(); in test_vertex_2d()
128 vtol_vertex_sptr v2v = v2->cast_to_vertex(); in test_vertex_2d()
139 TEST("vtol_vertex::cast_to_vertex()", v1v->cast_to_vertex()==nullptr, false); in test_vertex_2d()
H A Dtest_face_2d.cxx27 v_list.push_back(v1->cast_to_vertex()); in test_face_2d()
28 v_list.push_back(v2->cast_to_vertex()); in test_face_2d()
29 v_list.push_back(v3->cast_to_vertex()); in test_face_2d()
30 v_list.push_back(v4->cast_to_vertex()); in test_face_2d()
159 v_list.push_back(v5->cast_to_vertex()); in test_face_2d()
H A Dtest_edge_2d.cxx66 e1->set_v1(v3->cast_to_vertex()); in test_edge_2d()
67 e1->set_v2(v4->cast_to_vertex()); in test_edge_2d()
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bbas/bgui/
H A Dbgui_vtol2D_tableau.cxx167 if (tos->cast_to_vertex()) { in add_topology_object()
168 if (tos->cast_to_vertex()->cast_to_vertex_2d()) in add_topology_object()
170 vtol_vertex_2d_sptr v = tos->cast_to_vertex()->cast_to_vertex_2d(); in add_topology_object()
266 if (tos->cast_to_vertex()) in set_vtol_topology_object_style()
/dports/misc/vxl/vxl-3.3.2/contrib/gel/vtol/
H A Dvtol_vertex_2d.cxx178 vtol_vertex_sptr v = other->cast_to_vertex(); in new_edge()
250 obj.cast_to_topology_object()->cast_to_vertex() && in operator ==()
251 *this == *obj.cast_to_topology_object()->cast_to_vertex(); in operator ==()
H A Dvtol_vertex.h86 const vtol_vertex *cast_to_vertex() const override { return this; } in cast_to_vertex() function
91 vtol_vertex *cast_to_vertex() override { return this; } in cast_to_vertex() function
H A Dvtol_vertex.cxx149 obj.cast_to_topology_object()->cast_to_vertex() && in operator ==()
150 *this == *obj.cast_to_topology_object()->cast_to_vertex(); in operator ==()
H A Dvtol_edge.cxx115 v1_=v2_=zc0->inferiors()->front()->cast_to_vertex(); in set_vertices_from_zero_chains()
119 v1_=v->front()->cast_to_vertex(); in set_vertices_from_zero_chains()
120 v2_=v->back()->cast_to_vertex(); in set_vertices_from_zero_chains()
H A Dvtol_one_chain.cxx103 vtol_edge_sptr newedge = newverts[e->v1()->get_id()]->cast_to_vertex()->new_edge( in vtol_one_chain()
104 newverts[e->v2()->get_id()]->cast_to_vertex()); in vtol_one_chain()
210 result->push_back(e->v2()->cast_to_vertex()); in outside_boundary_compute_vertices()
211 result->push_back(e->v1()->cast_to_vertex()); in outside_boundary_compute_vertices()
215 result->push_back(e->v1()->cast_to_vertex()); in outside_boundary_compute_vertices()
216 result->push_back(e->v2()->cast_to_vertex()); in outside_boundary_compute_vertices()
H A Dvtol_zero_chain.cxx83 link_inferior((*i)->clone()->cast_to_topology_object()->cast_to_vertex()); in vtol_zero_chain()
109 return inferiors()->front()->cast_to_vertex(); in v0()
H A Dvtol_topology_object.h189 virtual const vtol_vertex *cast_to_vertex() const { return nullptr; } in cast_to_vertex() function
194 virtual vtol_vertex *cast_to_vertex() { return nullptr; } in cast_to_vertex() function
H A Dvtol_edge_2d.cxx27 assert(new_v1!=nullptr); v1_=new_v1->cast_to_vertex(); in vtol_edge_2d()
28 assert(new_v2!=nullptr); v2_=new_v2->cast_to_vertex(); in vtol_edge_2d()
H A Dvtol_face_2d.cxx50 vtol_edge_sptr newedge=new vtol_edge_2d(V1->cast_to_vertex(), in vtol_face_2d()
51 V2->cast_to_vertex()); in vtol_face_2d()
H A Dvtol_block.cxx89 newedges[j]=newverts[e->v1()->get_id()]->cast_to_vertex()->new_edge( in vtol_block()
90 … newverts[e->v2()->get_id()]->cast_to_vertex())->cast_to_topology_object(); in vtol_block()
H A Dvtol_zero_chain.h139 { return inferior->cast_to_vertex()!=nullptr; } in valid_inferior_type()
H A Dvtol_topology_io.cxx65 vertices.emplace_back((*vi)->cast_to_vertex()); in write()
158 vtol_vertex *v= (*ti)->cast_to_vertex(); in write()
H A Dvtol_two_chain.cxx113 newedges[j] = newverts[e->v1()->get_id()]->cast_to_vertex()->new_edge( in vtol_two_chain()
114 newverts[e->v2()->get_id()]->cast_to_vertex())->cast_to_topology_object(); in vtol_two_chain()
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/sdet/
H A Dsdet_contour.cxx913 split->set_v1(junction->cast_to_vertex()); in BreakCycle()
914 split->set_v2(junction->cast_to_vertex()); in BreakCycle()
1058 edge1->set_v2(junction->cast_to_vertex()); in BreakChain()
1092 edge2->set_v1(junction->cast_to_vertex()); in BreakChain()
1395 edge->set_v2(other->cast_to_vertex()); in MergeEndPtsOfChain()
1412 edge->set_v2(endpt->cast_to_vertex()); in MergeEndPtsOfChain()
1995 edge->set_v1(v->cast_to_vertex()); edge->set_v2(v->cast_to_vertex()); in FindJunctions()
2179 vv = v->cast_to_vertex(); in InsertBorder()
2209 vv = v->cast_to_vertex(); in InsertBorder()
2250 vv = v->cast_to_vertex(); in InsertBorder()
[all …]
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bbas/btol/
H A Dbtol_edge_algs.cxx40 vtol_vertex_sptr tv1 = e->v1()->cast_to_vertex(); in unlink_all_inferiors_twoway()
41 vtol_vertex_sptr tv2 = e->v2()->cast_to_vertex(); in unlink_all_inferiors_twoway()
H A Dbtol_face_algs.cxx263 trans_outside_verts.emplace_back(new_v->cast_to_vertex()); in transform()
281 t_hole_verts.emplace_back(new_v->cast_to_vertex()); in transform()
312 vtol_vertex_sptr v = (new vtol_vertex_2d(p->x(), p->y()))->cast_to_vertex(); in vsol_to_vtol()
/dports/misc/vxl/vxl-3.3.2/contrib/gel/gevd/
H A Dgevd_clean_edgels.cxx295 edge1->set_v2(new_v->cast_to_vertex()); // unlink when stronger.UnProtect() in split_edge()
308 vtol_vertex_sptr v2 = e->v2()->cast_to_vertex(); in split_edge()
310 edge2->set_v1(new_v->cast_to_vertex()); // link both directions v-e in split_edge()
387 …if (verbose) std::cout << "Splitting " << e->v1()->cast_to_vertex() << e->v2()->cast_to_vertex() <… in JumpGaps()
H A Dgevd_contour.cxx1059 edge->set_v1(v1->cast_to_vertex()); // link both directions v-e in FindJunctions()
1075 edge->set_v2(v2->cast_to_vertex()); // link both directions v-e in FindJunctions()
1208 … edge->set_v1(v->cast_to_vertex()); edge->set_v2(v->cast_to_vertex()); // link both directions v-e in FindJunctions()
/dports/misc/vxl/vxl-3.3.2/contrib/gel/vtol/examples/
H A Dexample3d.cxx119 v1_=v1->cast_to_vertex(); v2_=v2->cast_to_vertex(); in T()