Skip to content

Commit

Permalink
add path utils to snippets. (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
riggaroo authored Feb 7, 2024
1 parent 2cc47d6 commit 864fd55
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@ private fun MorphExampleAnimation() {
// [END android_compose_graphics_polygon_morph_animation]
}

// [START android_compose_morph_to_path]
/**
* Transforms the morph at a given progress into a [Path].
* It can optionally be scaled, using the origin (0,0) as pivot point.
Expand All @@ -257,10 +258,11 @@ fun Morph.toComposePath(progress: Float, scale: Float = 1f, path: Path = Path())
path.close()
return path
}

// [END android_compose_morph_to_path]
/**
* Function used to create a Path from a list of Cubics.
*/
// [START android_compose_list_cubics_to_path]
fun List<Cubic>.toPath(path: Path = Path(), scale: Float = 1f): Path {
path.rewind()
firstOrNull()?.let { first ->
Expand All @@ -276,6 +278,7 @@ fun List<Cubic>.toPath(path: Path = Path(), scale: Float = 1f): Path {
path.close()
return path
}
// [END android_compose_list_cubics_to_path]

// [START android_compose_morph_clip_shape]
class MorphPolygonShape(
Expand Down

0 comments on commit 864fd55

Please sign in to comment.