Android Open Source - quick3d Q3 D Application






From Project

Back to project page quick3d.

License

The source code is released under:

GNU General Public License

If you think the Android project quick3d listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package org.theiner.quick3d;
/*from  ww w  .j  a va  2s  .  c o  m*/
import android.app.Application;
import android.graphics.Bitmap;

/**
 * Created by TheineT on 21.10.2014.
 */
public class Q3DApplication extends Application {
    private String trace;

    private Boolean anaglyphSaved = false;
    private Boolean crossEyedSaved = false;
    private Boolean parallelEyedSaved = false;

    private Bitmap leftEyeBitmap = null;
    private Bitmap rightEyeBitmap = null;
    private Bitmap anaglyphBitmap = null;

    public String getTrace() {
        return trace;
    }

    public void setTrace(String s) {
        trace = s;
    }

    public void appendTrace(String s) {
        trace += s;
    }

    public void prependTrace(String s) { trace = s + trace;}

    public Boolean getAnaglyphSaved() {
        return anaglyphSaved;
    }

    public void setAnaglyphSaved(Boolean b) {
        anaglyphSaved = b;
    }


    public Bitmap getLeftEyeBitmap() {
        return leftEyeBitmap;
    }

    public void setLeftEyeBitmap(Bitmap leftEyeBitmap) {
        this.leftEyeBitmap = leftEyeBitmap;
    }

    public Bitmap getRightEyeBitmap() {
        return rightEyeBitmap;
    }

    public void setRightEyeBitmap(Bitmap rightEyeBitmap) {
        this.rightEyeBitmap = rightEyeBitmap;
    }

    public Bitmap getAnaglyphBitmap() {
        return anaglyphBitmap;
    }

    public void setAnaglyphBitmap(Bitmap anaglyphBitmap) {
        this.anaglyphBitmap = anaglyphBitmap;
    }

    public Boolean getCrossEyedSaved() {
        return crossEyedSaved;
    }

    public void setCrossEyedSaved(Boolean crossEyedSaved) {
        this.crossEyedSaved = crossEyedSaved;
    }

    public Boolean getParallelEyedSaved() {
        return parallelEyedSaved;
    }

    public void setParallelEyedSaved(Boolean parallelEyedSaved) {
        this.parallelEyedSaved = parallelEyedSaved;
    }
}




Java Source Code List

org.theiner.quick3d.ApplicationTest.java
org.theiner.quick3d.Helper.java
org.theiner.quick3d.LeftEyePhoto.java
org.theiner.quick3d.Q3DApplication.java
org.theiner.quick3d.Quick3DMain.java
org.theiner.quick3d.RightEyePhoto.java
org.theiner.quick3d.ShowAnaglyph.java
org.theiner.quick3d.ShowFotos.java
org.theiner.quick3d.ShowWiggle.java