Package fmg.fmg8.umgebung2D

Examples of fmg.fmg8.umgebung2D.Vektor2D.div()


        Vektor2D zwisch;
       
        // Der Schnittpunkt der Geraden.
        Vektor2D q = new Vektor2D(p1);
        q.add(p2);
        q.div(2);

        if (v1.distanz(Vektor2D.NULL_VEKTOR) < nullKonst
            || v2.distanz(Vektor2D.NULL_VEKTOR) < nullKonst
            || Double.isNaN(v1.x) || Double.isNaN(v1.y)
            || Double.isNaN(v2.x) || Double.isNaN(v2.y)
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.