Changeset 44 for trunk/UGeometric.pas


Ignore:
Timestamp:
Nov 19, 2017, 10:59:54 AM (6 years ago)
Author:
chronos
Message:
  • Fixed: Removed compilation warnings.
  • Modified: Preparation for 1.0.0 version release.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UGeometric.pas

    r38 r44  
    5353var
    5454  l2, t: Double;
    55   projection, tt: TPoint;
     55  tt: TPoint;
    5656begin
    5757  // Return minimum distance between line segment vw and point p
     
    7474    Exit;
    7575  end;
    76   //projection := v + t * (w - v);  // Projection falls on the segment
    7776  TT.X := Trunc(V.X + T * (W.X - V.X));
    7877  TT.Y := Trunc(V.Y + T * (W.Y - V.Y));
Note: See TracChangeset for help on using the changeset viewer.