Changeset 39:c76561589ded for source


Ignore:
Timestamp:
Jan 8, 2008, 5:54:06 PM (17 years ago)
Author:
fnevgeny
Branch:
default
Phase:
public
Message:

Beatified source.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • source/class/pf/ui/canvas/Plotter.js

    r38 r39  
    2323    f = 10*(sx - rx);                       // fraction between 0 and 10
    2424
    25     if (f < 1.5)
     25    if (f < 1.5) {
    2626        y = 1;
    27     else if (f < 3.)
     27    } else
     28    if (f < 3.0) {
    2829        y = 2;
    29     else if (f < 7.)
     30    } else
     31    if (f < 7.0) {
    3032        y = 5;
    31     else
     33    } else {
    3234        y = 10;
     35    }
    3336   
    3437    sx = rx + y/10.0;
Note: See TracChangeset for help on using the changeset viewer.