Package org.jzy3d.chart.factories
Interface IDrawableFactoryDesign
-
public interface IDrawableFactoryDesign
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Cylinder
newCylinder()
Disk
newDisk()
LineStrip
newLine(List<Coord3d> coords)
LineStrip
newLine(Coord3d... coords)
LineStripInterpolated
newLineInterpolated(List<Coord3d> controlPoints, int resolution)
Point
newPoint(Coord3d coord)
Polygon
newPolygon()
Quad
newQuad()
Scatter
newScatter()
Sphere
newSphere()
Shape
newSurface()
SymbolHandler
newSymbolHandler()
Triangle
newTriangle()
-
-
-
Method Detail
-
newLineInterpolated
LineStripInterpolated newLineInterpolated(List<Coord3d> controlPoints, int resolution)
-
newTriangle
Triangle newTriangle()
-
newQuad
Quad newQuad()
-
newPolygon
Polygon newPolygon()
-
newDisk
Disk newDisk()
-
newCylinder
Cylinder newCylinder()
-
newSphere
Sphere newSphere()
-
newSymbolHandler
SymbolHandler newSymbolHandler()
-
newSurface
Shape newSurface()
-
newScatter
Scatter newScatter()
-
-