view game/IDMPoint.java @ 126:c4d0ceec99ef

Add IDMPoint constructor copying from another IDMPoint.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 24 Nov 2011 21:08:36 +0200
parents 83a79d1698c8
children 4c0dec72e2f0
line wrap: on
line source

/*
 * Ristipolku IDM point
 * (C) Copyright 2011 Matti 'ccr' Hämäläinen <ccr@tnsp.org>
 */
package game;

public class IDMPoint
{
    public float x, y;
    
    public IDMPoint(float x, float y)
    {
        this.x = x;
        this.y = y;
    }

    public IDMPoint(IDMPoint pt)
    {
        this.x = pt.x;
        this.y = pt.y;
    }

    public IDMPoint copy()
    {
        return new IDMPoint(x, y);
    }
}