Lines Matching refs:node_handle

180 void get_leaf_node_handles(VHierarchyNodeHandle node_handle,
182 void compute_bounding_box(VHierarchyNodeHandle node_handle,
184 void compute_cone_of_normals(VHierarchyNodeHandle node_handle,
186 void compute_screen_space_error(VHierarchyNodeHandle node_handle,
188 void compute_mue_sigma(VHierarchyNodeHandle node_handle,
332 VHierarchyNodeHandle node_handle, lchild_handle, rchild_handle; in open_prog_mesh() local
365 node_handle = vhierarchy_.add_node(); in open_prog_mesh()
367 vhierarchy_.node(node_handle).set_index(node_index); in open_prog_mesh()
368 vhierarchy_.node(node_handle).set_vertex_handle(vertex_handle); in open_prog_mesh()
369 mesh_.data(vertex_handle).set_vhierarchy_node_handle(node_handle); in open_prog_mesh()
398 node_handle = mesh_.data(pminfo.v1).vhierarchy_node_handle(); in open_prog_mesh()
400 vhierarchy_.make_children(node_handle); in open_prog_mesh()
401 lchild_handle = vhierarchy_.lchild_handle(node_handle); in open_prog_mesh()
402 rchild_handle = vhierarchy_.rchild_handle(node_handle); in open_prog_mesh()
416 node_handle = vhierarchy_.root_handle(i); in open_prog_mesh()
417 vertex_handle = vhierarchy_.node(node_handle).vertex_handle(); in open_prog_mesh()
419 mesh_.data(vertex_handle).set_vhierarchy_node_handle(node_handle); in open_prog_mesh()
468 VHierarchyNodeHandle node_handle, lchild_handle, rchild_handle; in save_vd_prog_mesh() local
494 node_handle = vhierarchy_.root_handle(i); in save_vd_prog_mesh()
495 vh = vhierarchy_.node(node_handle).vertex_handle(); in save_vd_prog_mesh()
498 radius = vhierarchy_.node(node_handle).radius(); in save_vd_prog_mesh()
499 normal = vhierarchy_.node(node_handle).normal(); in save_vd_prog_mesh()
500 sin_square = vhierarchy_.node(node_handle).sin_square(); in save_vd_prog_mesh()
501 mue_square = vhierarchy_.node(node_handle).mue_square(); in save_vd_prog_mesh()
502 sigma_square = vhierarchy_.node(node_handle).sigma_square(); in save_vd_prog_mesh()
545 node_handle = mesh_.data(pminfo.v1).vhierarchy_node_handle(); in save_vd_prog_mesh()
546 lchild_handle = vhierarchy_.lchild_handle(node_handle); in save_vd_prog_mesh()
547 rchild_handle = vhierarchy_.rchild_handle(node_handle); in save_vd_prog_mesh()
549 node_index = vhierarchy_.node(node_handle).node_index(); in save_vd_prog_mesh()
550 fund_lcut_index = vhierarchy_.node(node_handle).fund_lcut_index(); in save_vd_prog_mesh()
551 fund_rcut_index = vhierarchy_.node(node_handle).fund_rcut_index(); in save_vd_prog_mesh()
675 node_handle = mesh_.data(*v_it).vhierarchy_node_handle(); in vdpm_analysis() local
677 vhierarchy_.node(node_handle).set_normal(mesh_.normal(*v_it)); in vdpm_analysis()
771 get_leaf_node_handles(VHierarchyNodeHandle node_handle, in get_leaf_node_handles() argument
774 if (vhierarchy_.node(node_handle).is_leaf()) in get_leaf_node_handles()
776 leaf_nodes.push_back(node_handle); in get_leaf_node_handles()
780 get_leaf_node_handles(vhierarchy_.node(node_handle).lchild_handle(), in get_leaf_node_handles()
782 get_leaf_node_handles(vhierarchy_.node(node_handle).rchild_handle(), in get_leaf_node_handles()
791 compute_bounding_box(VHierarchyNodeHandle node_handle, VHierarchyNodeHandleContainer &leaf_nodes) in compute_bounding_box() argument
798 VertexHandle vh = vhierarchy_.node(node_handle).vertex_handle(); in compute_bounding_box()
806 vhierarchy_.node(node_handle).set_radius(max_distance); in compute_bounding_box()
813 compute_cone_of_normals(VHierarchyNodeHandle node_handle, in compute_cone_of_normals() argument
817 VertexHandle vh = vhierarchy_.node(node_handle).vertex_handle(); in compute_cone_of_normals()
835 vhierarchy_.node(node_handle).set_normal(n); in compute_cone_of_normals()
836 vhierarchy_.node(node_handle).set_semi_angle(max_angle); in compute_cone_of_normals()
843 compute_screen_space_error(VHierarchyNodeHandle node_handle, VHierarchyNodeHandleContainer &leaf_no… in compute_screen_space_error() argument
866 vh = vhierarchy_.node(node_handle).vertex_handle(); in compute_screen_space_error()
891 compute_mue_sigma(node_handle, residuals); in compute_screen_space_error()
898 compute_mue_sigma(VHierarchyNodeHandle node_handle, in compute_mue_sigma() argument
906 vn = mesh_.normal(vhierarchy_.node(node_handle).vertex_handle()); in compute_mue_sigma()
918 vhierarchy_.node(node_handle).set_mue(max_cross); in compute_mue_sigma()
919 vhierarchy_.node(node_handle).set_sigma(max_inner); in compute_mue_sigma()
947 vhierarchy_.node(node_handle).set_mue(max_mue); in compute_mue_sigma()
948 vhierarchy_.node(node_handle).set_sigma(ratio*max_mue); in compute_mue_sigma()