1

Suppose I have a Manim transformation animation in ℝ2, such as

from manimlib.imports import *

def function(point):
    x, y, z = point
    return (x + 3*y)*RIGHT + (2*x + 4*y)*UP

class Transient(LinearTransformationScene):
    CONFIG = {
        "show_basis_vectors" : True,
    }
    def construct(self):
        self.wait(7)
        self.apply_nonlinear_transformation(function)
        self.wait(29)

How can I embed this transformation into a plane in ℝ3 instead? It would look like this, only it would be a transformation rather than a vector field.

I can't seem to find the Multivariable Calculus code in the old_projects directory (the MV course was made with Manim, right?), so I can't study the code for the vector field to emulate it. Similarly, a lot of code from the 3D transformation Linear Algebra chapter seems to be missing, and the chapter doesn't contain this exact type of transformation in any case, so it's not clear that it would help.

user10478
  • 327
  • 1
  • 16

0 Answers0