- Timestamp:
- Jun 14, 2016, 4:30:18 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 3 3 BigMetro.lps 4 4 heaptrclog.trc 5 BigMetro.exe
-
- Property svn:ignore
-
trunk/UGeometric.pas
r30 r38 125 125 function ArcTanPoint(Point: TPoint): Float; 126 126 begin 127 Result := ArcTan(Point.X / Point.Y); 127 if Point.Y = 0 then Result := Infinity 128 else Result := ArcTan(Point.X / Point.Y); 128 129 end; 129 130
Note:
See TracChangeset
for help on using the changeset viewer.