Example usage for com.google.gwt.core.client JavaScriptObject subclass-usage

List of usage examples for com.google.gwt.core.client JavaScriptObject subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.core.client JavaScriptObject subclass-usage.

Usage

From source file com.akjava.gwt.three.client.core.Ray.java

public class Ray extends JavaScriptObject {
    protected Ray() {
    }

    public final native JsArray<Intersect> intersectScene(Scene scene)/*-{
                                                                      return  this.intersectScene( scene );

From source file com.akjava.gwt.three.client.core.Vector3.java

public class Vector3 extends JavaScriptObject {
    protected Vector3() {
    };

    public native final void set(double x, double y, double z)/*-{
                                                              this.set(x,y,z);

From source file com.akjava.gwt.three.client.core.Vector4.java

public class Vector4 extends JavaScriptObject {
    protected Vector4() {
    };

    public native final void set(double x, double y, double z, double w)/*-{
                                                                        this.set(x,y,z,w);

From source file com.akjava.gwt.three.client.examples.js.controls.VRControls.java

public class VRControls extends JavaScriptObject {
    protected VRControls() {
    }

    public final native JavaScriptObject getVrInput()/*-{
                                                     return this.vrInput;

From source file com.akjava.gwt.three.client.examples.js.effects.StereoEffect.java

public class StereoEffect extends JavaScriptObject {
    protected StereoEffect() {
    }

    public final native double getEyeSeparation()/*-{
                                                 return this.eyeSeparation;

From source file com.akjava.gwt.three.client.examples.js.Ocean.java

/**
 * just automatic created & fixed for example
 * @author aki
 *
 */
public class Ocean extends JavaScriptObject {

From source file com.akjava.gwt.three.client.examples.js.postprocessing.BloomPass.java

public class BloomPass extends JavaScriptObject {
    protected BloomPass() {
    }

    public final native Object getStrength()/*-{
                                            return this.strength;

From source file com.akjava.gwt.three.client.examples.js.postprocessing.BokehPass.java

public class BokehPass extends JavaScriptObject {
    protected BokehPass() {
    }

    public final native Object getScene()/*-{
                                         return this.scene;

From source file com.akjava.gwt.three.client.examples.js.postprocessing.ClearMaskPass.java

public class ClearMaskPass extends JavaScriptObject {
    protected ClearMaskPass() {
    }

    public final native boolean isEnabled()/*-{
                                           return this.enabled;

From source file com.akjava.gwt.three.client.examples.js.postprocessing.DotScreenPass.java

public class DotScreenPass extends JavaScriptObject {
    protected DotScreenPass() {
    }

    public final native Object getUniforms()/*-{
                                            return this.uniforms;