几何 API 允许您创建交互式工具,例如橡皮擦和选择机制。
为了说明几何 API 的实际应用,请探索以下橡皮擦实现示例。
整笔画橡皮擦
fun eraseWholeStrokes(
eraserBox: ImmutableBox,
finishedStrokesState: MutableState<Set<Stroke>>,
) {
val threshold = 0.1f
val strokesToErase = finishedStrokesState.value.filter { stroke ->
stroke.shape.computeCoverageIsGreaterThan(
box = eraserBox,
coverageThreshold = threshold,
)
}
if (strokesToErase.isNotEmpty()) {
Snapshot.withMutableSnapshot {
finishedStrokesState.value -= strokesToErase
}
}
}
对于 Compose 实现,请确保触发重新组合,以便有效地移除笔画。例如,一种方法是在您的可组合项中使用 rememberCoroutineScope
并将协程范围传递给您的触摸侦听器,允许您在 Compose 的范围内修改 finishedStrokesState
。