Package com.ardor3d.math.type

Examples of com.ardor3d.math.type.ReadOnlyVector2


            return true;
        }
        if (!(o instanceof ReadOnlyVector2)) {
            return false;
        }
        final ReadOnlyVector2 comp = (ReadOnlyVector2) o;
        return getX() == comp.getX() && getY() == comp.getY();
    }
View Full Code Here

TOP

Related Classes of com.ardor3d.math.type.ReadOnlyVector2

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.