First of all, I would strongly suggest that you draw it this way, instead, so that it will be actually closed as AutoCAD means the term, and you won't have coincident vertices that can cause trouble:
command PL 0,0 100,0 100,100 _close
It sounds to me as though, in that very specific situation, the following would transform those two points without changing the third point [if done immediately after drawing it]:
(command "_.scale" (entlast) "" '(100 100) 1.01)
[If not immediately after drawing it, substitute a variable or an object selection or something in place of the (entlast).]
Is that the result you are looking for? If SCALE is not appropriate to other kinds of transformation, more detail about the possibilities would be needed. Very likely a solution could involve calculating new values for, and replacing, the 'COORDINATES VLA property.
Kent Cooper, AIA