Uses of Class
org.jzy3d.plot3d.primitives.LineStrip

Packages that use LineStrip
org.jzy3d.plot3d.primitives Provides 3d primitives that either implement plot3d.rendering.Drawable or plot3d.rendering.Composite3d, and thus provide a draw() and transform() function for the plot3d.rendering.Scene
org.jzy3d.plot3d.primitives.contour   
 

Uses of LineStrip in org.jzy3d.plot3d.primitives
 

Methods in org.jzy3d.plot3d.primitives that return LineStrip
static LineStrip LineStrip.merge(LineStrip strip1, LineStrip strip2)
          Merge lines by selecting the most relevant connection point: A-B to C-D if distance BC is shorter than distance DA C-D to A-B
 

Methods in org.jzy3d.plot3d.primitives with parameters of type LineStrip
 void LineStrip.addAll(LineStrip strip)
           
static LineStrip LineStrip.merge(LineStrip strip1, LineStrip strip2)
          Merge lines by selecting the most relevant connection point: A-B to C-D if distance BC is shorter than distance DA C-D to A-B
 

Uses of LineStrip in org.jzy3d.plot3d.primitives.contour
 

Methods in org.jzy3d.plot3d.primitives.contour that return LineStrip
 LineStrip ILineStripMergePolicy.mostMergeableIfAny(LineStrip ls, java.util.List<LineStrip> lines)
           
 LineStrip DefaultLineStripMergePolicy.mostMergeableIfAny(LineStrip ls, java.util.List<LineStrip> lines)
           
 

Methods in org.jzy3d.plot3d.primitives.contour that return types with arguments of type LineStrip
 java.util.List<LineStrip> ContourLevel.getLines()
           
 

Methods in org.jzy3d.plot3d.primitives.contour with parameters of type LineStrip
 void ContourLevels.appendLevelLine(double level, LineStrip strip)
           
 void ContourLevel.appendLine(LineStrip strip)
           
 boolean ILineStripMergePolicy.mergeable(LineStrip ls1, LineStrip ls2)
           
 boolean DefaultLineStripMergePolicy.mergeable(LineStrip ls1, LineStrip ls2)
           
 double ILineStripMergePolicy.mergeScore(LineStrip ls1, LineStrip ls2)
           
 double DefaultLineStripMergePolicy.mergeScore(LineStrip ls1, LineStrip ls2)
           
 LineStrip ILineStripMergePolicy.mostMergeableIfAny(LineStrip ls, java.util.List<LineStrip> lines)
           
 LineStrip DefaultLineStripMergePolicy.mostMergeableIfAny(LineStrip ls, java.util.List<LineStrip> lines)
           
 void ContourLevels.setLevelLine(double level, LineStrip strip)
           
 

Method parameters in org.jzy3d.plot3d.primitives.contour with type arguments of type LineStrip
 LineStrip ILineStripMergePolicy.mostMergeableIfAny(LineStrip ls, java.util.List<LineStrip> lines)
           
 LineStrip DefaultLineStripMergePolicy.mostMergeableIfAny(LineStrip ls, java.util.List<LineStrip> lines)
           
 

Constructor parameters in org.jzy3d.plot3d.primitives.contour with type arguments of type LineStrip
ContourLevel(int id, float value, java.util.List<LineStrip> lines)