case class LinearViewPath(stops: Seq[StopPoint], durations: Seq[Double], easing: (Double) ⇒ Double = LinearViewPath.LinearEasing) extends Product with Serializable
This class represents a path for a point of view to move along for rendering. The first argument is the points that the path hits with durations for how long it stops there. The second is the durations to take between stops. It should be one shorter than the stops.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- LinearViewPath
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new LinearViewPath(stops: Seq[StopPoint], durations: Seq[Double], easing: (Double) ⇒ Double = LinearViewPath.LinearEasing)