Class SphereNet.Line3d

  • All Implemented Interfaces:
    java.lang.Iterable<double[]>
    Enclosing class:
    SphereNet

    public static class SphereNet.Line3d
    extends java.lang.Object
    implements java.lang.Iterable<double[]>
    Represents a set of 3-d points that can be joined together to make a grid line. The first element is the same as the last.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Iterator<double[]> iterator()
      Returns an iterator over double[3]s representing 3d points.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.lang.Iterable

        forEach, spliterator
    • Method Detail

      • iterator

        public java.util.Iterator<double[]> iterator()
        Returns an iterator over double[3]s representing 3d points.
        Specified by:
        iterator in interface java.lang.Iterable<double[]>