Package com.jme.math

Examples of com.jme.math.Vector3f.cross()


       
        Vector3f b = new Vector3f(lineStart);
        b.subtract(point);
       
        Vector3f cross = new Vector3f();
        cross.cross(a,b);
       
        return cross.length()/a.length();
    }

    /**
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.