From 254ee6f47eebfc00462c10756a92066e82cc1a96 Mon Sep 17 00:00:00 2001 From: Andrew Branson Date: Tue, 21 Jun 2011 15:46:02 +0200 Subject: Initial commit --- source/com/c2kernel/graph/model/ElasticBand.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 source/com/c2kernel/graph/model/ElasticBand.java (limited to 'source/com/c2kernel/graph/model/ElasticBand.java') diff --git a/source/com/c2kernel/graph/model/ElasticBand.java b/source/com/c2kernel/graph/model/ElasticBand.java new file mode 100755 index 0000000..38497ef --- /dev/null +++ b/source/com/c2kernel/graph/model/ElasticBand.java @@ -0,0 +1,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; + } +} -- cgit v1.2.3