Importing points into program

You can import points into the current project while the program is running using the ImportPoints statement.

Function main
    Integer i

    ImportPoints "c:\models\model1.pts", "robot1.pts "
    LoadPoints "robot1.pts"
    For i = 0 To 10
      Jump pick
      Jump place
    Next i
Fend