<< dt3_insert_points cglab dtn_delete >>

cglab >> cglab > dt3_remove_points

dt3_remove_points

Remove the existante points from dt3.

Calling Sequence

dt3_remove_points(ptr,x,y);

Parameters

x , y
: are vectors of coordinates of points to remove from dt3.
ptr
: is a pointer representing dt3.

Description

Given a pointer ptr of dt3, dt3_remove_points(ptr,x,y) removes (x,y,z) points from dt3.

Examples

x = rand(1,10);
y = rand(1,10);
z = rand(1,10);
[tetra,ptr] = delaunay_3(x,y,z)
dt3_remove_points(ptr,x,y,z);
new_tri = dt3_get_connectivity(ptr)
dt3_delete(ptr,"ptr");

See Also

This function uses the Triangulation_3 package of CGAL, which is under QPL license. See License Terms

Authors


Report an issue
<< dt3_insert_points cglab dtn_delete >>