Browse Source

216067

tags/V162DEV_M1
aclement 15 years ago
parent
commit
6d906dc563
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      docs/dist/doc/examples/introduction/Point.java

+ 3
- 3
docs/dist/doc/examples/introduction/Point.java View File

@@ -74,9 +74,9 @@ public class Point {

protected void makeRectangular(){
if (!rectangular) {
x = rho * Math.sin(theta);
y = rho * Math.cos(theta);
rectangular = true;
y = rho * Math.sin(theta);
x = rho * Math.cos(theta);
rectangular = true;
}
}


Loading…
Cancel
Save