Gets the three points used to specify an angle (where point 1 is vertex).
First overload returns point for an index (in range 0 - 2).
Second overload requires passing an array[0..2] of TPoint (see example).
var pts: TIEAnglePoints; i: integer; begin GetPoints( pts, iepbBitmap ); for i := 0 to 2 do ShowMessage( IntToStr( pts[ i ].X ) + ',' + IntToStr( pts[ i ].Y ) ); end;