PolygonDrawingUtil 多边形绘制

来源:互联网 发布:郑州淘宝拍照 编辑:程序博客网 时间:2024/06/06 16:34

PolygonDrawingUtil

Download Android Arsenal

An efficient Android utility class for drawing regular polygons on a Canvas.

Consumers can specify:

  • number of sides (≥ 3);
  • center coordinates;
  • outer radius (center to vertex);
  • corner rounding radius;
  • polygon rotation;
  • fill/stroke Paint.

Demo

This video was captured using the sample application in this repository. It provides convenient controls for exploringPolygonDrawingUtil's capabilities.

Getting Started

  1. Specify PolygonDrawingUtil as a dependency in your build.gradle file:

    dependencies {  compile 'com.stkent:polygondrawingutil:1.0.0'}
  2. Create a new PolygonDrawingUtil instance and assign it to a field in your custom view class:

    private PolygonDrawingUtil polygonDrawingUtil = new PolygonDrawingUtil();
  3. Call polygonDrawUtil.drawPolygon in your onDraw method:

    @Overrideprotected void onDraw(Canvas canvas) {  super.onDraw(canvas);  polygonDrawingUtil.drawPolygon(      canvas,      numberOfSides,      centerX,      centerY,      polygonRadius,      cornerRadius,      rotation,      polygonPaint);}

License

Copyright 2017 Stuart KentLicensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License at   http://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.
原创粉丝点击