Пример #1
0
 /// <summary>
 /// Moves a single curve by the relative distance between two absolute positions
 /// </summary>
 /// <param name="moveOriginCoordinates">First of the two absolute positions</param>
 /// <param name="pointToMoveTo">Second of the two absolute positions</param>
 /// <param name="copiesToCreate">Number of copies that should be created by the operation</param>
 public List <PSEntity> MoveBetweenPoints(
     Geometry.Point moveOriginCoordinates,
     Geometry.Point pointToMoveTo,
     int copiesToCreate)
 {
     return(PSEntityMover.MoveEntityBetweenPoints(this, moveOriginCoordinates, pointToMoveTo, copiesToCreate));
 }
 /// <summary>
 /// This operation moves a single Electrode by a specified relative amount
 /// </summary>
 /// <param name="moveVector">The relative amount by which the Electrode will be moved</param>
 /// <param name="copiesToCreate">The number of copies that should be created by the operation</param>
 /// <returns>A list containing the entity moved</returns>
 public List <PSEntity> MoveByVector(Vector moveVector, int copiesToCreate)
 {
     return(PSEntityMover.MoveEntityByVector(this, moveVector, copiesToCreate));
 }