3 Star 1 Fork 1

CHINASOFT3_OHOS / PolygonDrawingUtil

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
Apache-2.0

PolygonDrawingUtil

项目介绍

  • 项目名称:PolygonDrawingUtil
  • 所属系列:openharmony的第三方组件适配移植
  • 功能:多边形绘制工具类
  • 项目移植状态:主功能完成
  • 调用差异:无
  • 开发版本:sdk6,DevEco Studio2.2 Beta1
  • 基线版本:release 1.2.0

效果演示

效果演示

安装教程

1.在项目根目录下的build.gradle文件中,

allprojects {
   repositories {
       maven {
           url 'https://s01.oss.sonatype.org/content/repositories/releases/'
       }
   }
}

2.在entry模块的build.gradle文件中,

dependencies {
   implementation('com.gitee.chinasoft_ohos:polygondrawingutil:1.0.0')
   ......  
}

在sdk6,DevEco Studio2.2 Beta1下项目可直接运行 如无法运行,删除项目.gradle,.idea,build,gradle,build.gradle文件, 并依据自己的版本创建新项目,将新项目的对应文件复制到根目录下

使用说明

参数:
1.sideCount 可指定边数(≥3)
2.centerX center 可指定中心坐标
3.outerRadius 可指定外半径(中心到顶点)
4.cornerRadius 可指定圆角倒圆半径
5.rotation 可指定多边形旋转
6.Paint 可选填充/描边Paint
7.Path 可选目标Path实例

使用:
1.创建一个新的“ PolygonDrawingUtil”实例,并将其分配给您的自定义视图类中的一个属性:

PolygonDrawingUtil polygonDrawingUtil = new PolygonDrawingUtil();

2.使用 polygonDrawUtil.drawPolygononDraw 方法中:

@Override
public void onDraw(Component component, Canvas canvas) {
    Float centerX = (component.getWidth() / 2f);
    Float centerY = (component.getHeight() / 2f);
    Float radius = scale * (component.getWidth() / 2f - strokeWidth);
    // Method 1 (simpler for direct drawing):
    polygonDrawingUtil.drawPolygon(
            canvas,
            this.numberOfSides,
            centerX,
            centerY,
            radius,
            cornerRadius,
            polygonRotation,
            polygonFillPaint
    );
}

或者,您可以提供自己的Path实例,并要求PolygonDrawingUtil用多边形填充它 :

Path strokePath = new Patch();
......

polygonDrawingUtil.constructPolygonPath(
        strokePath,
        this.numberOfSides,
        centerX,
        centerY,
        radius,
        cornerRadius,
        polygonRotation
);

这使您可以在绘制到“Canvas”之前在“Path”上执行后处理。

测试信息

CodeCheck代码测试无异常

CloudTest代码测试无异常

病毒安全检测通过

当前版本demo功能与原组件基本无差异

版本迭代

  • 1.0.0
  • 0.0.1-SNAPSHOT

版权和许可信息

Copyright 2019 Stuart Kent

Licensed 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.0

Unless required by applicable law or agreed to in writing, software
distributed 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 and
limitations under the License.
Copyright 2019 Stuart Kent Licensed 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.0 Unless required by applicable law or agreed to in writing, software distributed 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 and limitations under the License.

简介

多边形绘制工具类 展开 收起
Java
Apache-2.0
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
Java
1
https://gitee.com/chinasoft3_ohos/PolygonDrawingUtil.git
git@gitee.com:chinasoft3_ohos/PolygonDrawingUtil.git
chinasoft3_ohos
PolygonDrawingUtil
PolygonDrawingUtil
master

搜索帮助