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.js.math.Frustum.java

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

    public final native Frustum set(Plane p0, Plane p1, Plane p2, Plane p3, Plane p4, Plane p5)/*-{
                                                                                               return this.set(p0,p1,p2,p3,p4,p5);

From source file com.akjava.gwt.three.client.js.math.Line3.java

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

    public final native Vector3 getStart()/*-{
                                          return this.start;

From source file com.akjava.gwt.three.client.js.math.Matrix3.java

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

    public final native Matrix3 set(double n11, double n12, double n13, double n21, double n22, double n23,
            double n31, double n32, double n33)/*-{

From source file com.akjava.gwt.three.client.js.math.Plane.java

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

    public final native Vector3 getNormal()/*-{
                                           return this.normal;

From source file com.akjava.gwt.three.client.js.math.Ray.java

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

    public final native Vector3 getOrigin()/*-{
                                           return this.origin;

From source file com.akjava.gwt.three.client.js.math.Sphere.java

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

    public final native Vector3 getCenter()/*-{
                                           return this.center;

From source file com.akjava.gwt.three.client.js.math.Spline.java

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

    public final native JsArray<Vector3> getPoints()/*-{
                                                    return this.points;

From source file com.akjava.gwt.three.client.js.math.THREEMath.java

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

    public static final native double PI2()/*-{
                                           return this.PI2;

From source file com.akjava.gwt.three.client.js.math.Triangle.java

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

    public final native Vector3 getA()/*-{
                                      return this.a;

From source file com.akjava.gwt.three.client.js.math.Vector2.java

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

    /**
     * Converts this vector to a {@link Vector3}.