Example usage for com.badlogic.gdx.math Ellipse Ellipse

List of usage examples for com.badlogic.gdx.math Ellipse Ellipse

Introduction

In this page you can find the example usage for com.badlogic.gdx.math Ellipse Ellipse.

Prototype

public Ellipse(float x, float y, float width, float height) 

Source Link

Document

Constructs a new ellipse

Usage

From source file:non.plugins.math.java

public Ellipse ellipse(float x, float y, float width, float height) {
    return new Ellipse(x, y, width, height);
}