[Mathlib-commitlog] SF.net SVN: mathlib:[708] JMathLib/trunk/src/jmathlib/toolbox/jmathlib/ graphic
Status: Beta
Brought to you by:
st_mueller
|
From: <st_...@us...> - 2009-01-21 19:28:27
|
Revision: 708
http://mathlib.svn.sourceforge.net/mathlib/?rev=708&view=rev
Author: st_mueller
Date: 2009-01-21 19:28:12 +0000 (Wed, 21 Jan 2009)
Log Message:
-----------
changed signature of evaluate(Token[] operands)
to
evaluate(Token[] operands, GlobalValues globals)
Modified Paths:
--------------
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/bar3.java
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/bar3h.java
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/comet3.java
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/coneplot.java
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/contour3.java
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/contourslice.java
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/cylinder.java
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/ellipsoid.java
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/ezmesh.java
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/ezplot3.java
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/ezsurf.java
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/ezsurfc.java
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/fill3.java
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/bar3.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/bar3.java 2009-01-21 19:26:49 UTC (rev 707)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/bar3.java 2009-01-21 19:28:12 UTC (rev 708)
@@ -2,11 +2,12 @@
import jmathlib.core.tokens.*;
import jmathlib.core.functions.ExternalFunction;
+import jmathlib.core.interpreter.GlobalValues;
public class bar3 extends ExternalFunction
{
- public OperandToken evaluate(Token[] operands)
+ public OperandToken evaluate(Token[] operands, GlobalValues globals)
{
throwMathLibException("bar3: not implemented yet");
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/bar3h.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/bar3h.java 2009-01-21 19:26:49 UTC (rev 707)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/bar3h.java 2009-01-21 19:28:12 UTC (rev 708)
@@ -2,11 +2,12 @@
import jmathlib.core.tokens.*;
import jmathlib.core.functions.ExternalFunction;
+import jmathlib.core.interpreter.GlobalValues;
public class bar3h extends ExternalFunction
{
- public OperandToken evaluate(Token[] operands)
+ public OperandToken evaluate(Token[] operands, GlobalValues globals)
{
throwMathLibException("bar3h: not implemented yet");
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/comet3.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/comet3.java 2009-01-21 19:26:49 UTC (rev 707)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/comet3.java 2009-01-21 19:28:12 UTC (rev 708)
@@ -2,11 +2,12 @@
import jmathlib.core.tokens.*;
import jmathlib.core.functions.ExternalFunction;
+import jmathlib.core.interpreter.GlobalValues;
public class comet3 extends ExternalFunction
{
- public OperandToken evaluate(Token[] operands)
+ public OperandToken evaluate(Token[] operands, GlobalValues globals)
{
throwMathLibException("comet3: not implemented yet");
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/coneplot.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/coneplot.java 2009-01-21 19:26:49 UTC (rev 707)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/coneplot.java 2009-01-21 19:28:12 UTC (rev 708)
@@ -2,11 +2,12 @@
import jmathlib.core.tokens.*;
import jmathlib.core.functions.ExternalFunction;
+import jmathlib.core.interpreter.GlobalValues;
public class coneplot extends ExternalFunction
{
- public OperandToken evaluate(Token[] operands)
+ public OperandToken evaluate(Token[] operands, GlobalValues globals)
{
throwMathLibException("coneplot: not implemented yet");
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/contour3.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/contour3.java 2009-01-21 19:26:49 UTC (rev 707)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/contour3.java 2009-01-21 19:28:12 UTC (rev 708)
@@ -2,11 +2,12 @@
import jmathlib.core.tokens.*;
import jmathlib.core.functions.ExternalFunction;
+import jmathlib.core.interpreter.GlobalValues;
public class contour3 extends ExternalFunction
{
- public OperandToken evaluate(Token[] operands)
+ public OperandToken evaluate(Token[] operands, GlobalValues globals)
{
throwMathLibException("contour3: not implemented yet");
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/contourslice.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/contourslice.java 2009-01-21 19:26:49 UTC (rev 707)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/contourslice.java 2009-01-21 19:28:12 UTC (rev 708)
@@ -2,11 +2,12 @@
import jmathlib.core.tokens.*;
import jmathlib.core.functions.ExternalFunction;
+import jmathlib.core.interpreter.GlobalValues;
public class contourslice extends ExternalFunction
{
- public OperandToken evaluate(Token[] operands)
+ public OperandToken evaluate(Token[] operands, GlobalValues globals)
{
throwMathLibException("contour3: not implemented yet");
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/cylinder.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/cylinder.java 2009-01-21 19:26:49 UTC (rev 707)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/cylinder.java 2009-01-21 19:28:12 UTC (rev 708)
@@ -2,11 +2,12 @@
import jmathlib.core.tokens.*;
import jmathlib.core.functions.ExternalFunction;
+import jmathlib.core.interpreter.GlobalValues;
public class cylinder extends ExternalFunction
{
- public OperandToken evaluate(Token[] operands)
+ public OperandToken evaluate(Token[] operands, GlobalValues globals)
{
throwMathLibException("cylinder: not implemented yet");
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/ellipsoid.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/ellipsoid.java 2009-01-21 19:26:49 UTC (rev 707)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/ellipsoid.java 2009-01-21 19:28:12 UTC (rev 708)
@@ -2,11 +2,12 @@
import jmathlib.core.tokens.*;
import jmathlib.core.functions.ExternalFunction;
+import jmathlib.core.interpreter.GlobalValues;
public class ellipsoid extends ExternalFunction
{
- public OperandToken evaluate(Token[] operands)
+ public OperandToken evaluate(Token[] operands, GlobalValues globals)
{
throwMathLibException("ellipsoid: not implemented yet");
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/ezmesh.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/ezmesh.java 2009-01-21 19:26:49 UTC (rev 707)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/ezmesh.java 2009-01-21 19:28:12 UTC (rev 708)
@@ -2,11 +2,12 @@
import jmathlib.core.tokens.*;
import jmathlib.core.functions.ExternalFunction;
+import jmathlib.core.interpreter.GlobalValues;
public class ezmesh extends ExternalFunction
{
- public OperandToken evaluate(Token[] operands)
+ public OperandToken evaluate(Token[] operands, GlobalValues globals)
{
throwMathLibException("ezmesh: not implemented yet");
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/ezplot3.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/ezplot3.java 2009-01-21 19:26:49 UTC (rev 707)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/ezplot3.java 2009-01-21 19:28:12 UTC (rev 708)
@@ -2,11 +2,12 @@
import jmathlib.core.tokens.*;
import jmathlib.core.functions.ExternalFunction;
+import jmathlib.core.interpreter.GlobalValues;
public class ezplot3 extends ExternalFunction
{
- public OperandToken evaluate(Token[] operands)
+ public OperandToken evaluate(Token[] operands, GlobalValues globals)
{
throwMathLibException("ezplot3: not implemented yet");
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/ezsurf.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/ezsurf.java 2009-01-21 19:26:49 UTC (rev 707)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/ezsurf.java 2009-01-21 19:28:12 UTC (rev 708)
@@ -2,11 +2,12 @@
import jmathlib.core.tokens.*;
import jmathlib.core.functions.ExternalFunction;
+import jmathlib.core.interpreter.GlobalValues;
public class ezsurf extends ExternalFunction
{
- public OperandToken evaluate(Token[] operands)
+ public OperandToken evaluate(Token[] operands, GlobalValues globals)
{
throwMathLibException("ezsurf: not implemented yet");
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/ezsurfc.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/ezsurfc.java 2009-01-21 19:26:49 UTC (rev 707)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/ezsurfc.java 2009-01-21 19:28:12 UTC (rev 708)
@@ -2,11 +2,12 @@
import jmathlib.core.tokens.*;
import jmathlib.core.functions.ExternalFunction;
+import jmathlib.core.interpreter.GlobalValues;
public class ezsurfc extends ExternalFunction
{
- public OperandToken evaluate(Token[] operands)
+ public OperandToken evaluate(Token[] operands, GlobalValues globals)
{
throwMathLibException("ezsurfc: not implemented yet");
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/fill3.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/fill3.java 2009-01-21 19:26:49 UTC (rev 707)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/graph3d/fill3.java 2009-01-21 19:28:12 UTC (rev 708)
@@ -2,11 +2,12 @@
import jmathlib.core.tokens.*;
import jmathlib.core.functions.ExternalFunction;
+import jmathlib.core.interpreter.GlobalValues;
public class fill3 extends ExternalFunction
{
- public OperandToken evaluate(Token[] operands)
+ public OperandToken evaluate(Token[] operands, GlobalValues globals)
{
throwMathLibException("fill3: not implemented yet");
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|