Flip

enum Flip : Enum<Flip>

Represents different flipping (mirroring) options for vector graphics in the Paletteon library. This enum provides predefined options for mirroring an ImageVector either horizontally, vertically, or both.

Entries

Link copied to clipboard

No flipping or mirroring applied.

Link copied to clipboard

Horizontal flipping or mirroring. This option flips the image along the vertical axis, creating a mirror image as if it were reflected in a vertical mirror.

Link copied to clipboard

Vertical flipping or mirroring. This option flips the image along the horizontal axis, creating a mirror image as if it were reflected in a horizontal mirror.

Link copied to clipboard

Both horizontal and vertical flipping or mirroring. This option applies both horizontal and vertical flips, which is equivalent to rotating the image by 180 degrees.

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
fun valueOf(value: String): Flip

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard
fun values(): Array<Flip>

Returns an array containing the constants of this enum type, in the order they're declared.