Package toxi.geom

Examples of toxi.geom.Ray3D


        gfx.plane(p1, 300);
        fill(192);
        gfx.plane(p2, 300);
        stroke(255, 0, 255);
        strokeWeight(2);
        Ray3D ray = p1.intersectsPlane(p2);
        if (ray != null) {
            gfx.ray(ray, 300);
            gfx.ray(ray, -300);
        }
        if (doSave) {
View Full Code Here

TOP

Related Classes of toxi.geom.Ray3D

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.