Class Voro.wall

    • Constructor Summary

      Constructors 
      Constructor Description
      wall()  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      abstract boolean cut_cell​(Voro.voronoicell_neighbor c, double x, double y, double z)
      A pure virtual function for cutting a cell with neighbor-tracking enabled with a wall.
      abstract boolean cut_cell​(Voro.voronoicell c, double x, double y, double z)
      A pure virtual function for cutting a cell without neighbor-tracking with a wall.
      abstract void delete()  
      abstract boolean point_inside​(double x, double y, double z)
      A pure virtual function for testing whether a point is inside the wall object.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • wall

        wall()
    • Method Detail

      • delete

        public abstract void delete()
      • point_inside

        public abstract boolean point_inside​(double x,
                                             double y,
                                             double z)
        A pure virtual function for testing whether a point is inside the wall object.
      • cut_cell

        public abstract boolean cut_cell​(Voro.voronoicell c,
                                         double x,
                                         double y,
                                         double z)
        A pure virtual function for cutting a cell without neighbor-tracking with a wall.
      • cut_cell

        public abstract boolean cut_cell​(Voro.voronoicell_neighbor c,
                                         double x,
                                         double y,
                                         double z)
        A pure virtual function for cutting a cell with neighbor-tracking enabled with a wall.