几何 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
。