Changeset 234 for trunk/UGeometry.pas


Ignore:
Timestamp:
Sep 19, 2018, 5:28:58 PM (6 years ago)
Author:
chronos
Message:
  • Added: Unfinished implementation of cyclic map drawing.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UGeometry.pas

    r232 r234  
    5353    procedure SetEmpty;
    5454    procedure Normalize;
     55    procedure Move(P: T);
    5556    class operator Equal(const A, B: TGRect<T>): Boolean;
    5657    constructor Create(const P1, P2: T);
     
    521522end;
    522523
     524procedure TGRect<T>.Move(P: T);
     525begin
     526  P1 := P1 + P;
     527  P2 := P2 + P;
     528end;
     529
    523530constructor TGRect<T>.Create(const P1, P2: T);
    524531begin
Note: See TracChangeset for help on using the changeset viewer.