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

TVec2f

Vektor v 2D.

Declaration

Source position: DMath.pas line 26

type TVec2f = packed record

  case Integer of

    0: (

        X: Single;

        Y: Single;

      );

    1: (

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

      );

end;