Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.graphics.Path;
import android.graphics.RectF;

public class Main {
    public static Path addRoundPath3(int width, int height, float radius) {
        Path path = new Path();
        path.addRoundRect(new RectF(0, 0, width, height), radius, radius, Path.Direction.CW);
        return path;
    }
}