Package com.ardor3d.math.type

Examples of com.ardor3d.math.type.ReadOnlyRing


            return true;
        }
        if (!(o instanceof ReadOnlyRing)) {
            return false;
        }
        final ReadOnlyRing comp = (ReadOnlyRing) o;
        return getInnerRadius() == comp.getInnerRadius() && getOuterRadius() == comp.getOuterRadius()
                && _up.equals(comp.getUp()) && _center.equals(comp.getCenter());

    }
View Full Code Here

TOP

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

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.