From 6d906dc563e78f9a4a21bc61f27ca406b065a6b8 Mon Sep 17 00:00:00 2001 From: aclement Date: Wed, 20 Aug 2008 19:31:42 +0000 Subject: [PATCH] 216067 --- docs/dist/doc/examples/introduction/Point.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/dist/doc/examples/introduction/Point.java b/docs/dist/doc/examples/introduction/Point.java index 609a0488c..4de01359b 100644 --- a/docs/dist/doc/examples/introduction/Point.java +++ b/docs/dist/doc/examples/introduction/Point.java @@ -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; } } -- 2.39.5