package org.cristalise.gui.graph.controller; import org.cristalise.kernel.graph.model.GraphPoint; public class ElasticBand { public GraphPoint mFixedCorner = null; public GraphPoint mMovingCorner = null; public ElasticBand(GraphPoint fixedCorner, GraphPoint movingCorner) { mFixedCorner = fixedCorner; mMovingCorner = movingCorner; } }