Changeset 28 for trunk/UGeometric.pas


Ignore:
Timestamp:
Apr 12, 2015, 2:32:33 PM (9 years ago)
Author:
chronos
Message:
  • Added: Now user can place additional trains on line and move trains between lines and different places on line.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UGeometric.pas

    r27 r28  
    2222function ArcTan2Point(Point: TPoint): Float;
    2323function ArcTanPoint(Point: TPoint): Float;
     24function RectEquals(A, B: TRect): Boolean;
    2425
    2526implementation
     
    125126end;
    126127
     128function RectEquals(A, B: TRect): Boolean;
     129begin
     130  Result := (A.Left = B.Left) and (A.Top = B.Top) and
     131    (A.Right = B.Right) and (A.Bottom = B.Bottom);
     132end;
     133
     134
    127135end.
    128136
Note: See TracChangeset for help on using the changeset viewer.