Skip to content

Add path utils to snippets. #211

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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