TransitionPatch

1.0.4

Declarative sequence for converting value.
FluidGroup/TransitionPatch

What's New

2022-01-28T19:12:52Z

TransitionPatch

Sample

let value = ValuePatch(10)
  .progress(start: 0, end: 13)
  .clip(min: 0, max: 1)
  .reverse()
  .transition(start: 30, end: 60)
  .value

// value == 36.92307692307692

Functions

Make a Progress

Make a value of progress from CGFloat between a range.

let progress: ProgressPatch = ValuePatch(10)
  .progress(start: 5, end: 15)

// progress.fractionCompleted == 0.5

Make a Transition from progress

Make a value of transition from progress between start and end.

let value: ValuePatch = ProgressPatch(0.5)
  .transition(start: 10, end: 20)

// value.value == 15

Description

  • Swift Tools 5.1.0
View More Packages from this Author

Dependencies

  • None
Last updated: Tue Mar 19 2024 21:50:55 GMT-0900 (Hawaii-Aleutian Daylight Time)