Revision: 557
http://mathlib.svn.sourceforge.net/mathlib/?rev=557&view=rev
Author: st_mueller
Date: 2008-12-26 13:03:25 +0000 (Fri, 26 Dec 2008)
Log Message:
-----------
fixed problem with plot3
Modified Paths:
--------------
JMathLib/trunk/src/jmathlib/core/graphics/GraphicalObject.java
Modified: JMathLib/trunk/src/jmathlib/core/graphics/GraphicalObject.java
===================================================================
--- JMathLib/trunk/src/jmathlib/core/graphics/GraphicalObject.java 2008-12-20 12:36:53 UTC (rev 556)
+++ JMathLib/trunk/src/jmathlib/core/graphics/GraphicalObject.java 2008-12-26 13:03:25 UTC (rev 557)
@@ -47,12 +47,12 @@
public int height;
/* boundary values */
- protected double xmin;
- protected double xmax;
- protected double ymin;
- protected double ymax;
- protected double zmin;
- protected double zmax;
+ protected double xmin = -0.5;
+ protected double xmax = +0.5;
+ protected double ymin = -0.5;
+ protected double ymax = +0.5;
+ protected double zmin = -0.5;
+ protected double zmax = +0.5;
/* axes boundaries */
public double ax_xmin;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|