All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.graphics.Path Maven / Gradle / Ivy

package android.graphics;
public class Path
{
public static enum FillType
{
EVEN_ODD(),
INVERSE_EVEN_ODD(),
INVERSE_WINDING(),
WINDING();
}
public static enum Direction
{
CCW(),
CW();
}
public  Path() { throw new RuntimeException("Stub!"); }
public  Path(android.graphics.Path src) { throw new RuntimeException("Stub!"); }
public  void reset() { throw new RuntimeException("Stub!"); }
public  void rewind() { throw new RuntimeException("Stub!"); }
public  void set(android.graphics.Path src) { throw new RuntimeException("Stub!"); }
public  android.graphics.Path.FillType getFillType() { throw new RuntimeException("Stub!"); }
public  void setFillType(android.graphics.Path.FillType ft) { throw new RuntimeException("Stub!"); }
public  boolean isInverseFillType() { throw new RuntimeException("Stub!"); }
public  void toggleInverseFillType() { throw new RuntimeException("Stub!"); }
public  boolean isEmpty() { throw new RuntimeException("Stub!"); }
public  boolean isRect(android.graphics.RectF rect) { throw new RuntimeException("Stub!"); }
public  void computeBounds(android.graphics.RectF bounds, boolean exact) { throw new RuntimeException("Stub!"); }
public  void incReserve(int extraPtCount) { throw new RuntimeException("Stub!"); }
public  void moveTo(float x, float y) { throw new RuntimeException("Stub!"); }
public  void rMoveTo(float dx, float dy) { throw new RuntimeException("Stub!"); }
public  void lineTo(float x, float y) { throw new RuntimeException("Stub!"); }
public  void rLineTo(float dx, float dy) { throw new RuntimeException("Stub!"); }
public  void quadTo(float x1, float y1, float x2, float y2) { throw new RuntimeException("Stub!"); }
public  void rQuadTo(float dx1, float dy1, float dx2, float dy2) { throw new RuntimeException("Stub!"); }
public  void cubicTo(float x1, float y1, float x2, float y2, float x3, float y3) { throw new RuntimeException("Stub!"); }
public  void rCubicTo(float x1, float y1, float x2, float y2, float x3, float y3) { throw new RuntimeException("Stub!"); }
public  void arcTo(android.graphics.RectF oval, float startAngle, float sweepAngle, boolean forceMoveTo) { throw new RuntimeException("Stub!"); }
public  void arcTo(android.graphics.RectF oval, float startAngle, float sweepAngle) { throw new RuntimeException("Stub!"); }
public  void close() { throw new RuntimeException("Stub!"); }
public  void addRect(android.graphics.RectF rect, android.graphics.Path.Direction dir) { throw new RuntimeException("Stub!"); }
public  void addRect(float left, float top, float right, float bottom, android.graphics.Path.Direction dir) { throw new RuntimeException("Stub!"); }
public  void addOval(android.graphics.RectF oval, android.graphics.Path.Direction dir) { throw new RuntimeException("Stub!"); }
public  void addCircle(float x, float y, float radius, android.graphics.Path.Direction dir) { throw new RuntimeException("Stub!"); }
public  void addArc(android.graphics.RectF oval, float startAngle, float sweepAngle) { throw new RuntimeException("Stub!"); }
public  void addRoundRect(android.graphics.RectF rect, float rx, float ry, android.graphics.Path.Direction dir) { throw new RuntimeException("Stub!"); }
public  void addRoundRect(android.graphics.RectF rect, float[] radii, android.graphics.Path.Direction dir) { throw new RuntimeException("Stub!"); }
public  void addPath(android.graphics.Path src, float dx, float dy) { throw new RuntimeException("Stub!"); }
public  void addPath(android.graphics.Path src) { throw new RuntimeException("Stub!"); }
public  void addPath(android.graphics.Path src, android.graphics.Matrix matrix) { throw new RuntimeException("Stub!"); }
public  void offset(float dx, float dy, android.graphics.Path dst) { throw new RuntimeException("Stub!"); }
public  void offset(float dx, float dy) { throw new RuntimeException("Stub!"); }
public  void setLastPoint(float dx, float dy) { throw new RuntimeException("Stub!"); }
public  void transform(android.graphics.Matrix matrix, android.graphics.Path dst) { throw new RuntimeException("Stub!"); }
public  void transform(android.graphics.Matrix matrix) { throw new RuntimeException("Stub!"); }
protected  void finalize() throws java.lang.Throwable { throw new RuntimeException("Stub!"); }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy