Package org.jzy3d.plot2d.primitives
Class ScatterPointSerie2d
- java.lang.Object
-
- org.jzy3d.plot2d.primitives.ScatterPointSerie2d
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jzy3d.plot2d.primitives.Serie2d
Serie2d.Type
-
-
Field Summary
Fields Modifier and Type Field Description protected Color
defaultColor
protected String
name
protected ConcurrentScatterPoint
scatter
-
Constructor Summary
Constructors Constructor Description ScatterPointSerie2d(String name)
-
Method Summary
All Methods Instance Methods Concrete 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()
ConcurrentScatterPoint
getScatter()
protected ConcurrentScatterPoint
makeDrawable()
void
setColor(Color color)
void
setName(String name)
void
setScatter(ConcurrentScatterPoint scatter)
void
setWidth(int width)
-
-
-
Field Detail
-
scatter
protected ConcurrentScatterPoint scatter
-
name
protected String name
-
defaultColor
protected Color defaultColor
-
-
Constructor Detail
-
ScatterPointSerie2d
public ScatterPointSerie2d(String name)
-
-
Method Detail
-
getScatter
public ConcurrentScatterPoint getScatter()
-
setScatter
public void setScatter(ConcurrentScatterPoint scatter)
-
setName
public void setName(String name)
-
makeDrawable
protected ConcurrentScatterPoint makeDrawable()
-
getDrawable
public Drawable getDrawable()
- Specified by:
getDrawable
in interfaceSerie2d
-
-