本文整理汇总了Java中android.graphics.Path.offset方法的典型用法代码示例。如果您正苦于以下问题:Java Path.offset方法的具体用法?Java Path.offset怎么用?Java Path.offset使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.graphics.Path
的用法示例。
在下文中一共展示了Path.offset方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: drawIndicator
import android.graphics.Path; //导入方法依赖的package包/类
private void drawIndicator() {
float xPos = x + (getNearestDeviation() * gaugeWidth / MAX_DEVIATION);
float yPosition = y * 1.15f;
Matrix matrix = new Matrix();
float scalingFactor = numbersPaint.getTextSize() / 3;
matrix.setScale(scalingFactor, scalingFactor);
Path indicator = new Path();
indicator.moveTo(0, -2);
indicator.lineTo(1, 0);
indicator.lineTo(-1, 0);
indicator.close();
indicator.transform(matrix);
indicator.offset(xPos, yPosition);
canvas.drawPath(indicator, gaugePaint);
}
示例2: getViewPathWithOffsetAt
import android.graphics.Path; //导入方法依赖的package包/类
private Path getViewPathWithOffsetAt(int position) {
Path noOffsetPath = viewPaths.get(position);
if (noOffsetPath == null) {
return null;
}
Path path = new Path();
path.set(noOffsetPath);
path.offset(offsetX, offsetY);
return path;
}
示例3: getScaledAndOffsetPath
import android.graphics.Path; //导入方法依赖的package包/类
public Path getScaledAndOffsetPath(float offsetX, float offsetY, float scaleX, float scaleY) {
Path newPath = new Path(path);
newPath.offset(offsetX, offsetY);
newPath.transform(getScaleMatrix(newPath, scaleX, scaleY));
return newPath;
}