Package com.ardor3d.math.type

Examples of com.ardor3d.math.type.ReadOnlyLineSegment3


            return true;
        }
        if (!(o instanceof ReadOnlyLineSegment3)) {
            return false;
        }
        final ReadOnlyLineSegment3 comp = (ReadOnlyLineSegment3) o;
        return _origin.equals(comp.getOrigin()) && _direction.equals(comp.getDirection())
                && _extent == comp.getExtent();
    }
View Full Code Here

TOP

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

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.