|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.ObjectSciLib.Grp.Plot3D
public final class Plot3D
This class contains some methods to draw a 3D graphics.
| Constructor Summary | |
|---|---|
Plot3D()
|
|
| Method Summary | |
|---|---|
static void |
plot(Function3D func)
Plot a function. |
static void |
plot(Graphics3D g3D,
Function3D func)
Plot a function with coordinate system. |
static void |
plot(Graphics3D g3D,
Function3D func,
boolean coord)
Plot a function. |
static void |
plot(Graphics3D g3D,
vector x,
vector y,
matrix z,
java.awt.Color c,
java.lang.String title)
default plot method with coordinate system |
static void |
plot(Graphics3D g3D,
vector x,
vector y,
matrix z,
java.awt.Color c,
java.lang.String title,
boolean coord)
default plot method |
static void |
plot(vector x,
vector y,
matrix z,
java.awt.Color c,
java.lang.String title)
default plot method |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public Plot3D()
| Method Detail |
|---|
public static void plot(Graphics3D g3D,
vector x,
vector y,
matrix z,
java.awt.Color c,
java.lang.String title,
boolean coord)
g3D - A Graphics3D objectx - A vector that contains x-coordinatesy - A vector that contains y-coordinatesz - A matrix that contains z-coordinates at grid (x,y)c - Colortitle - A stringcoord - A boolean, true for display coordinate system.
public static void plot(Graphics3D g3D,
vector x,
vector y,
matrix z,
java.awt.Color c,
java.lang.String title)
g3D - A Graphics3D objectx - A vector that contains x-coordinatesy - A vector that contains y-coordinatesz - A matrix that contains z-coordinates at grid (x,y)c - Colortitle - A string
public static void plot(vector x,
vector y,
matrix z,
java.awt.Color c,
java.lang.String title)
x - A vector that contains x-coordinatesy - A vector that contains y-coordinatesz - A matrix that contains z-coordinates at grid (x,y)c - Colortitle - A string
public static void plot(Graphics3D g3D,
Function3D func,
boolean coord)
g3D - A Graphics3D objectfunc - An object that implements the Function interfacecoord - A boolean, true for display coordinate system.
public static void plot(Graphics3D g3D,
Function3D func)
g3D - A Graphics3D objectfunc - An object that implements the Function interfacepublic static void plot(Function3D func)
func - An object that implements the Function interface
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||