Class to contain point for use in one of the vector classes.
Example #1
0
 /// <summary>
 /// Default constructor.
 /// 
 /// Note: Uses console output as standard.
 /// </summary>
 public Simulator()
 {
     Currentposition = new VecPoint(0,0,0,0,0);
     iuiOutput = new ConsoleUI(); // DonĀ“t move location.
     iuiOutput.writeLine("Simulation is started!");
     initialization();
     bGripperIsOpen = false;
 }
Example #2
0
 /// <summary>
 /// Add a point to the vector.
 /// </summary>
 /// <param name="pNewVecPoint"></param>
 public void addPoint(VecPoint pNewVecPoint)
 {
     lstPoints.Add(pNewVecPoint);
 }