gpt4 book ai didi

android - Android 中的路径测量

转载 作者:行者123 更新时间:2023-11-30 01:08:47 26 4
gpt4 key购买 nike

现在我正在学习如何在 android 中使用 pathmeasure。我有 3 条路径:entryPathleftPathrightPath。当我想将这些路径添加到路径测量中时,我试过这个:

    mTickPath.addPath(entryPath);
mTickPath.addPath(leftPath);
mTickPath.addPath(rightPath);
mTickMeasure = new PathMeasure(mTickPath, false);
// mTickMeasure is a PathMeasure

但是我遇到了一个问题,我的 mTickMeasure.getLenth() 等于 entryPath。mTickPathentryPath 不同我使用了 canvas.drawPath(mTickPath,paint) 并在屏幕上显示了它们的路径。

最佳答案

PathMeasure.getLength()仅返回当前轮廓的长度(在本例中为 entryPath)。 PathMeasure.nextContour()将移动到下一个轮廓,如果是最后一个则返回 false。

路径的总长度可以通过添加所有轮廓的长度来计算。

关于android - Android 中的路径测量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38628124/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com