public class IGraphicsJ2D extends java.lang.Object implements IGraphics2D
| Constructor and Description |
|---|
IGraphicsJ2D() |
| Modifier and Type | Method and Description |
|---|---|
void |
clr(float[] rgba)
fill color (array of 4 float in order of r, g, b, a)
|
void |
clr(float r,
float g,
float b)
fill color (float 0-255)
|
void |
clr(float r,
float g,
float b,
float a)
fill color (float 0-255)
|
void |
clr(IColor c)
fill color
|
void |
draw(java.util.ArrayList<IGraphicI> objects,
IView v) |
boolean |
firstDraw()
check if this is the first time frame to draw
|
void |
firstDraw(boolean f)
set the first draw flag
|
void |
stroke(float[] rgba)
stroke color (array of 4 float in order of r, g, b, a)
|
void |
stroke(float r,
float g,
float b)
stroke color (float 0-255)
|
void |
stroke(float r,
float g,
float b,
float a)
stroke color (float 0-255)
|
void |
stroke(IColor c)
stroke (line) color
|
IGraphicMode.GraphicType |
type() |
IView |
view() |
void |
weight(float w) |
public IView view
public boolean firstDraw
public IGraphicMode.GraphicType type()
public void clr(float[] rgba)
IGraphicspublic void clr(float r,
float g,
float b,
float a)
IGraphicspublic void clr(float r,
float g,
float b)
IGraphicspublic void stroke(IColor c)
IGraphicspublic void stroke(float[] rgba)
IGraphicspublic void stroke(float r,
float g,
float b,
float a)
IGraphicspublic void stroke(float r,
float g,
float b)
IGraphicspublic boolean firstDraw()
IGraphics