MCPcopy Create free account
hub / github.com/KAlO2/PerfectShow / lerp

Method lerp

src/com/cloudream/ishow/util/MathUtils.java:174–177  ·  view source on GitHub ↗
(float start, float stop, float amount)

Source from the content-addressed store, hash-verified

172 }
173
174 public static float lerp(float start, float stop, float amount)
175 {
176 return start + (stop - start) * amount;
177 }
178
179 public static float norm(float start, float stop, float value)
180 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected