Package org.jzy3d.chart.factories
Class AbstractDrawableFactory
- java.lang.Object
-
- org.jzy3d.chart.factories.AbstractDrawableFactory
-
- All Implemented Interfaces:
IDrawableFactory
- Direct Known Subclasses:
NativeDrawableFactory
public abstract class AbstractDrawableFactory extends Object implements IDrawableFactory
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AbstractDrawableFactory.Settings
-
Constructor Summary
Constructors Constructor Description AbstractDrawableFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CubeGLUT
newCube(Coord3d coord, Color color, Color wireframe, float radius)
CubeComposite
newCubeComposite(Coord3d coord, Color color, Color wireframe, float radius)
Sphere
newSphere(Coord3d coord, Color color, Color wireframe, float radius, int slicing)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.jzy3d.chart.factories.IDrawableFactory
newPointRound, newPointSquare
-
-
-
-
Method Detail
-
newSphere
public Sphere newSphere(Coord3d coord, Color color, Color wireframe, float radius, int slicing)
- Specified by:
newSphere
in interfaceIDrawableFactory
-
newCube
public CubeGLUT newCube(Coord3d coord, Color color, Color wireframe, float radius)
- Specified by:
newCube
in interfaceIDrawableFactory
-
newCubeComposite
public CubeComposite newCubeComposite(Coord3d coord, Color color, Color wireframe, float radius)
- Specified by:
newCubeComposite
in interfaceIDrawableFactory
-
-