Class ForceObject<T>


  • public class ForceObject<T>
    extends Object
    An instance used to gather forces while visiting the BarnesHut QuadTree.
    Author:
    Tom Nelson
    • Field Detail

      • p

        public final Point p
        location of p
      • f

        public Point f
        force vector
      • mass

        protected double mass
        mass
    • Constructor Detail

      • ForceObject

        public ForceObject​(T element,
                           Point p,
                           double mass)
      • ForceObject

        public ForceObject​(T element,
                           Point p)
      • ForceObject

        public ForceObject​(T element,
                           double x,
                           double y)
      • ForceObject

        public ForceObject​(T element,
                           double x,
                           double y,
                           double mass)
    • Method Detail

      • getMass

        public double getMass()
        Returns:
        the mass of this ForceObject
      • addForceFrom

        protected void addForceFrom​(ForceObject<T> other)
        override in the layoutAlgorithm to apply forces in a way that is consistent with the chosen implementation. See FRBHVisitorLayoutAlgorithm and SpringVisitorLayoutAlgorithm.
        Parameters:
        other - the ForceObject (a node or a force vector) to apply force from
      • getElement

        public T getElement()
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object