~ubuntu-branches/ubuntu/lucid/ipe/lucid

« back to all changes in this revision

Viewing changes to src/ipelets/goodies/goodies.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2008-11-07 04:25:40 UTC
  • mfrom: (4.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20081107042540-4nzheasbudy9p2o9
Tags: 6.0pre31-1
* New upstream.
  - debian/patches/gcc43.diff
  - debian/patches/ipe-bug-253.diff:
  - debian/patches/decimal-point.patch: Remove.  Applied upstream.
  - debian/patches/config.diff: Remove IPEBROWSER hunk; upstream changed
    it to sensible-browser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
    tfm = IpeLinear(1, 0, 0, -1);
130
130
    break;
131
131
  case 2: // Turn 90 degrees
132
 
    tfm = IpeLinear(0, -1, 1, 0);
 
132
    tfm = IpeLinear(0, 1, -1, 0);
133
133
    break;
134
134
  case 3: // Turn 180 degrees
135
135
    tfm = IpeLinear(-1, 0, 0, -1);
136
136
    break;
137
137
  case 4: // Turn 270 degrees
138
 
    tfm = IpeLinear(0, 1, -1, 0);
 
138
    tfm = IpeLinear(0, -1, 1, 0);
139
139
    break;
140
140
  case 5: // Precise rotate
141
141
    tfm = IpeLinear(IpeAngle::Degrees(IpeLex(str).GetDouble()));