public interface IGraphics
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 view) |
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) |
IView view()
IGraphicMode.GraphicType type()
void clr(IColor c)
void clr(float r, float g, float b, float a)
void clr(float r, float g, float b)
void clr(float[] rgba)
void stroke(IColor c)
void stroke(float r, float g, float b, float a)
void stroke(float r, float g, float b)
void stroke(float[] rgba)
void weight(float w)
boolean firstDraw()
void firstDraw(boolean f)