summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/graph/model/ElasticBand.java
blob: 38497ef25476642da2993ef30e5d72ccee21099e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.c2kernel.graph.model;

import java.awt.Point;


public class ElasticBand
{
	public Point mFixedCorner  = null;
	public Point mMovingCorner = null;


	public ElasticBand(Point fixedCorner, Point movingCorner)
	{
		mFixedCorner  = fixedCorner;
		mMovingCorner = movingCorner;
	}
}