|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IGraphics
Class of Graphics like java.awt.Graphics to wrap all possible graphic mode (Currently Java AWT and OpenGL).
Method Summary | |
---|---|
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)
|
Method Detail |
---|
IView view()
void draw(java.util.ArrayList<IGraphicI> objects, 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)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |