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 classAbstractDrawableFactory.Settings
-
Constructor Summary
Constructors Constructor Description AbstractDrawableFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CubeGLUTnewCube(Coord3d coord, Color color, Color wireframe, float radius)CubeCompositenewCubeComposite(Coord3d coord, Color color, Color wireframe, float radius)SpherenewSphere(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:
newSpherein interfaceIDrawableFactory
-
newCube
public CubeGLUT newCube(Coord3d coord, Color color, Color wireframe, float radius)
- Specified by:
newCubein interfaceIDrawableFactory
-
newCubeComposite
public CubeComposite newCubeComposite(Coord3d coord, Color color, Color wireframe, float radius)
- Specified by:
newCubeCompositein interfaceIDrawableFactory
-
-