Copy a point distribution. There are two distinct forms of this command. The first format is designed to copy points from one mesh object into another. The second form duplicates points within a mesh object including all the attributes of the points.
copypts / sink_cmo / source_cmo / 1st_sink_pt / sink_stride / 1st_source_pt / last_source_pt / source_stride / sink_attribute / source_attribute / copy
copypts / 1st_source_point / last_source_point / source_stride [ / 1st_sink_point / sink_stride / copy ]
copyts / 1st_point / last_point / stride
The first form of the command gives the arguments sink first then source whereas the second form gives the source then the sink.
Copy all points in 2dmesh to the end of the 3dmesh point list.
copypts / 3dmesh / 2dmesh / 0, 0/ pset, get, mypoints /
Copy the point set named mypoints from 2dmesh to the end of 3dmesh point list.
copypts / 3dmesh / 2dmesh / 100, 4 / pset, get, mypoints / boron / arsenic /
Copy the arsenic field from the point set named mypoints from 2dmesh replacing the boron field at every fourth point beginning at point 100 in 3dmesh.
copypts / pset, get, mypoints / 0, 0 /
Duplicate the point set named mypoints from the current mesh object and place the duplicated points at the end of the point list.
copypts / / / 0, 0 / pset, get, mypoints /
Duplicate the point set named mypoints from the current mesh object and place the duplicated points at the end of the point list. Same effect as the example directly above. The current mesh object is used since the fields are blank on the command line