An NDoc Documented Class Library

xyzArray.delete Method 

Deletes Acount points starting at position Index.

public void delete(
   int Index,
   int Acount
);

Parameters

Index
Startpoint for deletion
Acount
Count of Points to delete

Example

xyzArray a = new xyzArray(4);
    a[0]= new xyz(1, 1, 1);
    a[1]= new xyz(1,-1, 2);
    a[2]= new xyz(3, 4, 2);
    a[3]= new xyz(2, 2, 1);

    a.delete(1, 2);
    //now a has count = 2;
    // a[0] = (1, 1, 1);
    // a[1] = (2, 2, 1);
    //

See Also

xyzArray Class | Minais.Drawing3d.Math Namespace