Help for this page

Select Code to Download


  1. or download this
    push @data, V(split) while <$in_fh>;
    
  2. or download this
    while (<$in_fh>) {
        my @points = split;
        push(@data, V( @points[0,1,2] ), V( @points[3,4,5] ) );
    }