Optimize shape for double-struck 2 (#2728)
This commit is contained in:
parent
5c8392346d
commit
e5032b977c
2 changed files with 22 additions and 18 deletions
|
@ -314,6 +314,9 @@ export function SetupBuilders(bindings) {
|
|||
alsoThru.g4 = function (rx, ry, raf) {
|
||||
return new SimpleMixInterpolator(g4, rx, ry, 0, 0, raf);
|
||||
};
|
||||
alsoThru.g2.withOffset = function (rx, ry, deltaX, deltaY, raf) {
|
||||
return new SimpleMixInterpolator(g2, rx, ry, deltaX, deltaY, raf);
|
||||
};
|
||||
|
||||
/// Multi-mix interpolator
|
||||
class MultiMixInterpolator extends InterpolatorBase {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue