Package org.jzy3d.plot2d.primitives
Interface Serie2d
-
- All Known Implementing Classes:
LineSerie2d,LineSerie2dSplitted,ScatterPointSerie2d,ScatterSerie2d
public interface Serie2d
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classSerie2d.Type
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidadd(double x, double y)voidadd(double x, double y, Color color)voidadd(float x, float y)voidadd(float x, float y, Color color)voidadd(List<Coord2d> c)voidadd(Coord2d c)voidadd(Coord2d c, Color color)voidclear()ColorgetColor()DrawablegetDrawable()StringgetName()voidsetColor(Color color)voidsetWidth(int width)
-
-
-
Method Detail
-
clear
void clear()
-
add
void add(float x, float y)
-
add
void add(double x, double y)
-
add
void add(float x, float y, Color color)
-
add
void add(double x, double y, Color color)
-
add
void add(Coord2d c)
-
getName
String getName()
-
setWidth
void setWidth(int width)
-
setColor
void setColor(Color color)
-
getColor
Color getColor()
-
getDrawable
Drawable getDrawable()
-
-