1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package com.c2kernel.gui.graph.controller; import com.c2kernel.graph.model.GraphPoint; public class ElasticBand { public GraphPoint mFixedCorner = null; public GraphPoint mMovingCorner = null; public ElasticBand(GraphPoint fixedCorner, GraphPoint movingCorner) { mFixedCorner = fixedCorner; mMovingCorner = movingCorner; } }