java.lang.Object
org.jfree.chart3d.graphics3d.Object3D
org.jfree.chart3d.graphics3d.LineObject3D
A line between two points in 3D space.
- Since:
- 1.5
-
Field Summary
Fields inherited from class org.jfree.chart3d.graphics3d.Object3D
CLASS_KEY, COLOR_PREFIX, ITEM_KEY
-
Constructor Summary
ConstructorsConstructorDescriptionLineObject3D
(float x0, float y0, float z0, float x1, float y1, float z1, Color color) Creates a newLine3D
instance. -
Method Summary
Methods inherited from class org.jfree.chart3d.graphics3d.Object3D
addDoubleSidedFace, addFace, addFace, addFace, addVertex, addVertex, calculateEyeCoordinates, calculateProjectedPoints, createBar, createBox, createCube, createLabelObject, createOctahedron, createPieLabelMarkers, createPieSegment, createSphere, createTetrahedron, createYSheet, createZSheet, getColor, getColor, getFaceCount, getFaces, getOutline, getOutline, getProperty, getVertexCount, setOutline, setProperty
-
Constructor Details
-
LineObject3D
Creates a newLine3D
instance.- Parameters:
x0
- the x-coordinate for the start of the line.y0
- the y-coordinate for the start of the line.z0
- the z-coordinate for the start of the line.x1
- the x-coordinate for the end of the line.y1
- the y-coordinate for the end of the line.z1
- the z-coordinate for the end of the line.color
- the color (null
not permitted).
-