Class LineObject3D

java.lang.Object
org.jfree.chart3d.graphics3d.Object3D
org.jfree.chart3d.graphics3d.LineObject3D

public class LineObject3D extends Object3D
A line between two points in 3D space.
Since:
1.5
  • Constructor Details

    • LineObject3D

      public LineObject3D(float x0, float y0, float z0, float x1, float y1, float z1, Color color)
      Creates a new Line3D 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).