mirror of
https://github.com/3b1b/manim.git
synced 2025-07-30 05:24:22 +08:00
Halfway through dot products
This commit is contained in:
@ -304,8 +304,9 @@ class Mobject(object):
|
||||
"""
|
||||
raise Exception("Not implemented")
|
||||
|
||||
def gradient_highlight(self, start_color, end_color):
|
||||
raise Exception("Not implemented")
|
||||
def gradient_highlight(self, *colors):
|
||||
self.submobject_gradient_highlight(*colors)
|
||||
return self
|
||||
|
||||
def submobject_gradient_highlight(self, *colors):
|
||||
if len(colors) == 0:
|
||||
|
Reference in New Issue
Block a user