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 class
Serie2d.Type
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(double x, double y)
void
add(double x, double y, Color color)
void
add(float x, float y)
void
add(float x, float y, Color color)
void
add(List<Coord2d> c)
void
add(Coord2d c)
void
add(Coord2d c, Color color)
void
clear()
Color
getColor()
Drawable
getDrawable()
String
getName()
void
setColor(Color color)
void
setWidth(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()
-
-