Class ForceObject<T>
- java.lang.Object
-
- org.jungrapht.visualization.layout.quadtree.ForceObject<T>
-
public class ForceObject<T> extends Object
An instance used to gather forces while visiting the BarnesHut QuadTree.- Author:
- Tom Nelson
-
-
Constructor Summary
Constructors Constructor Description ForceObject(T element, double x, double y)
ForceObject(T element, double x, double y, double mass)
ForceObject(T element, Point p)
ForceObject(T element, Point p, double mass)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ForceObject
add(ForceObject<T> other)
protected void
addForceFrom(ForceObject<T> other)
override in the layoutAlgorithm to apply forces in a way that is consistent with the chosen implementation.boolean
equals(Object o)
T
getElement()
double
getMass()
int
hashCode()
String
toString()
-
-
-
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
-
add
public ForceObject add(ForceObject<T> other)
-
getElement
public T getElement()
-
-