summaryrefslogtreecommitdiff
path: root/src/main/java/com/c2kernel/gui/graph/controller/ElasticBand.java
blob: b458ddf751da643624cc3c9bb6875379cdef349b (plain)
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;
	}
}