Package barsuift.simLife.j3d

Examples of barsuift.simLife.j3d.Point3dState


    private Point3dState translationVector;

    public Tree3DState() {
        super();
        this.translationVector = new Point3dState();
    }
View Full Code Here


        this.translationVector = translationVector;
    }

    public Tree3DState(Tree3DState copy) {
        super();
        this.translationVector = new Point3dState(copy.translationVector);
    }
View Full Code Here

    private Point3dState endPoint;

    public TreeBranchPart3DState() {
        super();
        this.endPoint = new Point3dState();
    }
View Full Code Here

        this.endPoint = endPoint;
    }

    public TreeBranchPart3DState(TreeBranchPart3DState copy) {
        super();
        this.endPoint = new Point3dState(copy.endPoint);
    }
View Full Code Here

     */
    private double rotation;

    public TreeLeaf3DState() {
        super();
        this.leafAttachPoint = new Point3dState();
        this.initialEndPoint1 = new Point3dState();
        this.initialEndPoint2 = new Point3dState();
        this.endPoint1 = new Point3dState();
        this.endPoint2 = new Point3dState();
        this.rotation = 0;
    }
View Full Code Here

        this.rotation = rotation;
    }

    public TreeLeaf3DState(TreeLeaf3DState copy) {
        super();
        this.leafAttachPoint = new Point3dState(copy.leafAttachPoint);
        this.initialEndPoint1 = new Point3dState(copy.initialEndPoint1);
        this.initialEndPoint2 = new Point3dState(copy.initialEndPoint2);
        this.endPoint1 = new Point3dState(copy.endPoint1);
        this.endPoint2 = new Point3dState(copy.endPoint2);
        this.rotation = copy.rotation;
    }
View Full Code Here

    private Point3dState translationVector;

    public TreeBranch3DState() {
        super();
        this.translationVector = new Point3dState();
    }
View Full Code Here

        this.translationVector = translationVector;
    }

    public TreeBranch3DState(TreeBranch3DState copy) {
        super();
        this.translationVector = new Point3dState(copy.translationVector);
    }
View Full Code Here

TOP

Related Classes of barsuift.simLife.j3d.Point3dState

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.