[Overview][Constants][Types][Procedures and functions][Index] Reference for unit 'DMath' (#DEngine)

TVec2i

Vektor v 2D s koordinatami tipa Integer.

Declaration

Source position: DMath.pas line 20

type TVec2i = packed record

  case Integer of

    0: (

        X: Integer;

        Y: Integer;

      );

    1: (

        Arr: array [0..1] of Integer;

      );

end;