2015-06-10 22:00:35 -07:00
|
|
|
from helpers import *
|
|
|
|
|
2015-12-19 13:06:09 -08:00
|
|
|
from mobject import Mobject1D
|
2016-10-27 22:54:12 -07:00
|
|
|
from mobject.vectorized_mobject import VMobject, VGroup
|
2015-12-19 13:06:09 -08:00
|
|
|
from mobject.tex_mobject import TexMobject
|
2016-04-19 00:20:19 -07:00
|
|
|
from topics.geometry import Line, Arrow
|
2015-10-27 21:00:50 -07:00
|
|
|
from scene import Scene
|
2015-06-10 22:00:35 -07:00
|
|
|
|
2016-04-19 00:20:19 -07:00
|
|
|
class NumberLine(VMobject):
|
2016-02-27 16:32:53 -08:00
|
|
|
CONFIG = {
|
2016-04-19 00:20:19 -07:00
|
|
|
"color" : BLUE,
|
|
|
|
"x_min" : -SPACE_WIDTH,
|
|
|
|
"x_max" : SPACE_WIDTH,
|
2017-05-23 13:17:31 -07:00
|
|
|
"unit_size" : 1,
|
2016-04-19 00:20:19 -07:00
|
|
|
"tick_size" : 0.1,
|
2016-08-17 16:14:15 -07:00
|
|
|
"tick_frequency" : 1,
|
2016-04-19 00:20:19 -07:00
|
|
|
"leftmost_tick" : None, #Defaults to ceil(x_min)
|
2015-09-28 16:25:18 -07:00
|
|
|
"numbers_with_elongated_ticks" : [0],
|
2017-02-16 13:03:26 -08:00
|
|
|
"numbers_to_show" : None,
|
2016-04-19 00:20:19 -07:00
|
|
|
"longer_tick_multiple" : 2,
|
|
|
|
"number_at_center" : 0,
|
2016-04-23 23:36:05 -07:00
|
|
|
"propogate_style_to_family" : True
|
2015-09-28 16:25:18 -07:00
|
|
|
}
|
|
|
|
def __init__(self, **kwargs):
|
2015-10-28 16:03:33 -07:00
|
|
|
digest_config(self, kwargs)
|
2015-10-08 11:14:55 -07:00
|
|
|
if self.leftmost_tick is None:
|
2016-04-19 00:20:19 -07:00
|
|
|
self.leftmost_tick = np.ceil(self.x_min)
|
|
|
|
VMobject.__init__(self, **kwargs)
|
2015-06-10 22:00:35 -07:00
|
|
|
|
|
|
|
def generate_points(self):
|
2016-04-19 00:20:19 -07:00
|
|
|
self.main_line = Line(self.x_min*RIGHT, self.x_max*RIGHT)
|
2016-07-15 18:16:06 -07:00
|
|
|
self.tick_marks = VMobject()
|
|
|
|
self.add(self.main_line, self.tick_marks)
|
2016-04-19 00:20:19 -07:00
|
|
|
for x in self.get_tick_numbers():
|
|
|
|
self.add_tick(x, self.tick_size)
|
|
|
|
for x in self.numbers_with_elongated_ticks:
|
|
|
|
self.add_tick(x, self.longer_tick_multiple*self.tick_size)
|
2017-05-23 13:17:31 -07:00
|
|
|
self.stretch(self.unit_size, 0)
|
2016-04-19 00:20:19 -07:00
|
|
|
self.shift(-self.number_to_point(self.number_at_center))
|
|
|
|
|
|
|
|
def add_tick(self, x, size):
|
2016-07-15 18:16:06 -07:00
|
|
|
self.tick_marks.add(Line(
|
2016-04-19 00:20:19 -07:00
|
|
|
x*RIGHT+size*DOWN,
|
|
|
|
x*RIGHT+size*UP,
|
|
|
|
))
|
|
|
|
return self
|
2015-09-30 14:22:17 -07:00
|
|
|
|
2016-07-15 18:16:06 -07:00
|
|
|
def get_tick_marks(self):
|
|
|
|
return self.tick_marks
|
|
|
|
|
2015-09-30 14:22:17 -07:00
|
|
|
def get_tick_numbers(self):
|
2017-04-18 18:37:15 -07:00
|
|
|
epsilon = 0.001
|
2017-02-06 21:43:46 -08:00
|
|
|
return np.arange(
|
2017-04-18 18:37:15 -07:00
|
|
|
self.leftmost_tick, self.x_max+epsilon,
|
2017-02-06 21:43:46 -08:00
|
|
|
self.tick_frequency
|
|
|
|
)
|
2015-08-01 11:34:33 -07:00
|
|
|
|
2015-09-25 19:43:53 -07:00
|
|
|
def number_to_point(self, number):
|
2016-11-11 11:18:41 -08:00
|
|
|
alpha = float(number-self.x_min)/(self.x_max - self.x_min)
|
2015-09-25 19:43:53 -07:00
|
|
|
return interpolate(
|
2016-11-11 11:18:41 -08:00
|
|
|
self.main_line.get_start(),
|
|
|
|
self.main_line.get_end(),
|
|
|
|
alpha
|
2015-09-25 19:43:53 -07:00
|
|
|
)
|
|
|
|
|
2015-09-30 14:22:17 -07:00
|
|
|
def point_to_number(self, point):
|
2017-02-16 13:03:26 -08:00
|
|
|
left_point, right_point = self.main_line.get_start_and_end()
|
|
|
|
full_vect = right_point-left_point
|
|
|
|
def distance_from_left(p):
|
|
|
|
return np.dot(p-left_point, full_vect)/np.linalg.norm(full_vect)
|
|
|
|
|
|
|
|
return interpolate(
|
|
|
|
self.x_min, self.x_max,
|
|
|
|
distance_from_left(point)/distance_from_left(right_point)
|
|
|
|
)
|
2015-09-30 14:22:17 -07:00
|
|
|
|
|
|
|
def default_numbers_to_display(self):
|
2017-02-16 13:03:26 -08:00
|
|
|
if self.numbers_to_show is not None:
|
|
|
|
return self.numbers_to_show
|
2016-08-17 16:14:15 -07:00
|
|
|
return np.arange(self.leftmost_tick, self.x_max, 1)
|
2015-09-30 14:22:17 -07:00
|
|
|
|
2016-03-08 23:13:41 -08:00
|
|
|
def get_vertical_number_offset(self, direction = DOWN):
|
|
|
|
return 4*direction*self.tick_size
|
2015-09-30 14:22:17 -07:00
|
|
|
|
2016-03-08 23:13:41 -08:00
|
|
|
def get_number_mobjects(self, *numbers, **kwargs):
|
2015-10-08 11:14:55 -07:00
|
|
|
#TODO, handle decimals
|
2015-09-25 19:43:53 -07:00
|
|
|
if len(numbers) == 0:
|
2015-09-30 14:22:17 -07:00
|
|
|
numbers = self.default_numbers_to_display()
|
2017-07-24 21:15:24 -07:00
|
|
|
if "force_integers" in kwargs and kwargs["force_integers"]:
|
|
|
|
numbers = map(int, numbers)
|
2016-10-27 22:54:12 -07:00
|
|
|
result = VGroup()
|
2015-09-25 19:43:53 -07:00
|
|
|
for number in numbers:
|
2017-07-24 21:15:24 -07:00
|
|
|
mob = TexMobject(str(number))
|
2016-08-17 16:14:15 -07:00
|
|
|
mob.scale_to_fit_height(3*self.tick_size)
|
2016-04-19 00:20:19 -07:00
|
|
|
mob.shift(
|
|
|
|
self.number_to_point(number),
|
|
|
|
self.get_vertical_number_offset(**kwargs)
|
|
|
|
)
|
2016-10-27 22:54:12 -07:00
|
|
|
result.add(mob)
|
2015-09-30 14:22:17 -07:00
|
|
|
return result
|
|
|
|
|
2016-03-08 23:13:41 -08:00
|
|
|
def add_numbers(self, *numbers, **kwargs):
|
|
|
|
self.numbers = self.get_number_mobjects(
|
|
|
|
*numbers, **kwargs
|
|
|
|
)
|
|
|
|
self.add(*self.numbers)
|
2015-10-08 11:14:55 -07:00
|
|
|
return self
|
2015-06-10 22:00:35 -07:00
|
|
|
|
2015-09-25 19:43:53 -07:00
|
|
|
class UnitInterval(NumberLine):
|
2016-02-27 16:32:53 -08:00
|
|
|
CONFIG = {
|
2016-04-19 00:20:19 -07:00
|
|
|
"x_min" : 0,
|
|
|
|
"x_max" : 1,
|
2017-05-23 13:17:31 -07:00
|
|
|
"unit_size" : 6,
|
2016-04-19 00:20:19 -07:00
|
|
|
"tick_frequency" : 0.1,
|
2015-09-25 19:43:53 -07:00
|
|
|
"numbers_with_elongated_ticks" : [0, 1],
|
2016-04-19 00:20:19 -07:00
|
|
|
"number_at_center" : 0.5,
|
2015-09-25 19:43:53 -07:00
|
|
|
}
|
|
|
|
|
2016-12-29 14:31:01 -08:00
|
|
|
class Axes(VGroup):
|
2016-04-30 15:08:53 -07:00
|
|
|
CONFIG = {
|
|
|
|
"propogate_style_to_family" : True
|
|
|
|
}
|
2016-12-29 14:31:01 -08:00
|
|
|
def __init__(self, **kwargs):
|
|
|
|
VGroup.__init__(self)
|
2016-04-27 17:35:04 -07:00
|
|
|
self.x_axis = NumberLine(**kwargs)
|
|
|
|
self.y_axis = NumberLine(**kwargs).rotate(np.pi/2)
|
|
|
|
self.add(self.x_axis, self.y_axis)
|
|
|
|
|
2016-04-19 00:20:19 -07:00
|
|
|
class NumberPlane(VMobject):
|
2016-02-27 16:32:53 -08:00
|
|
|
CONFIG = {
|
2016-04-19 00:20:19 -07:00
|
|
|
"color" : BLUE_D,
|
|
|
|
"secondary_color" : BLUE_E,
|
|
|
|
"axes_color" : WHITE,
|
2016-07-22 11:22:31 -07:00
|
|
|
"secondary_stroke_width" : 1,
|
2017-05-23 13:17:31 -07:00
|
|
|
"x_radius": None,
|
|
|
|
"y_radius": None,
|
|
|
|
"x_unit_size" : 1,
|
|
|
|
"y_unit_size" : 1,
|
|
|
|
"center_point" : ORIGIN,
|
2016-04-19 00:20:19 -07:00
|
|
|
"x_line_frequency" : 1,
|
|
|
|
"y_line_frequency" : 1,
|
|
|
|
"secondary_line_ratio" : 1,
|
2016-04-30 15:08:53 -07:00
|
|
|
"written_coordinate_height" : 0.2,
|
|
|
|
"propogate_style_to_family" : False,
|
2015-10-06 15:27:40 -07:00
|
|
|
}
|
2015-10-28 16:03:33 -07:00
|
|
|
|
2015-10-06 15:27:40 -07:00
|
|
|
def generate_points(self):
|
2017-05-23 13:17:31 -07:00
|
|
|
if self.x_radius is None:
|
|
|
|
center_to_edge = (SPACE_WIDTH + abs(self.center_point[0]))
|
|
|
|
self.x_radius = center_to_edge / self.x_unit_size
|
|
|
|
if self.y_radius is None:
|
|
|
|
center_to_edge = (SPACE_HEIGHT + abs(self.center_point[1]))
|
|
|
|
self.y_radius = center_to_edge / self.y_unit_size
|
2016-04-19 00:20:19 -07:00
|
|
|
self.axes = VMobject()
|
|
|
|
self.main_lines = VMobject()
|
|
|
|
self.secondary_lines = VMobject()
|
|
|
|
tuples = [
|
|
|
|
(
|
|
|
|
self.x_radius,
|
|
|
|
self.x_line_frequency,
|
|
|
|
self.y_radius*DOWN,
|
|
|
|
self.y_radius*UP,
|
|
|
|
RIGHT
|
|
|
|
),
|
|
|
|
(
|
|
|
|
self.y_radius,
|
|
|
|
self.y_line_frequency,
|
|
|
|
self.x_radius*LEFT,
|
|
|
|
self.x_radius*RIGHT,
|
|
|
|
UP,
|
|
|
|
),
|
2015-10-06 18:41:26 -07:00
|
|
|
]
|
2016-04-19 00:20:19 -07:00
|
|
|
for radius, freq, start, end, unit in tuples:
|
|
|
|
main_range = np.arange(0, radius, freq)
|
|
|
|
step = freq/float(freq + self.secondary_line_ratio)
|
|
|
|
for v in np.arange(0, radius, step):
|
|
|
|
line1 = Line(start+v*unit, end+v*unit)
|
|
|
|
line2 = Line(start-v*unit, end-v*unit)
|
|
|
|
if v == 0:
|
|
|
|
self.axes.add(line1)
|
|
|
|
elif v in main_range:
|
|
|
|
self.main_lines.add(line1, line2)
|
|
|
|
else:
|
|
|
|
self.secondary_lines.add(line1, line2)
|
2017-02-23 18:13:36 -08:00
|
|
|
self.add(self.secondary_lines, self.main_lines, self.axes)
|
2017-05-23 13:17:31 -07:00
|
|
|
self.stretch(self.x_unit_size, 0)
|
|
|
|
self.stretch(self.y_unit_size, 1)
|
|
|
|
self.shift(self.center_point)
|
2016-07-15 18:16:06 -07:00
|
|
|
#Put x_axis before y_axis
|
|
|
|
y_axis, x_axis = self.axes.split()
|
|
|
|
self.axes = VMobject(x_axis, y_axis)
|
2016-04-19 00:20:19 -07:00
|
|
|
|
|
|
|
def init_colors(self):
|
|
|
|
VMobject.init_colors(self)
|
2016-07-22 11:22:31 -07:00
|
|
|
self.axes.set_stroke(self.axes_color, self.stroke_width)
|
|
|
|
self.main_lines.set_stroke(self.color, self.stroke_width)
|
|
|
|
self.secondary_lines.set_stroke(
|
|
|
|
self.secondary_color, self.secondary_stroke_width
|
|
|
|
)
|
2016-04-19 00:20:19 -07:00
|
|
|
return self
|
2015-10-20 21:55:46 -07:00
|
|
|
|
2015-10-06 15:27:40 -07:00
|
|
|
def get_center_point(self):
|
2017-05-23 13:17:31 -07:00
|
|
|
return self.coords_to_point(0, 0)
|
2015-10-06 15:27:40 -07:00
|
|
|
|
2017-05-09 23:00:30 -07:00
|
|
|
def coords_to_point(self, x, y):
|
2017-05-23 13:17:31 -07:00
|
|
|
x, y = np.array([x, y])
|
2016-12-02 13:12:58 -08:00
|
|
|
result = self.axes.get_center()
|
2017-05-23 13:17:31 -07:00
|
|
|
result += x*self.get_x_unit_size()*RIGHT
|
|
|
|
result += y*self.get_y_unit_size()*UP
|
2015-11-02 19:09:55 -08:00
|
|
|
return result
|
|
|
|
|
2017-05-09 23:00:30 -07:00
|
|
|
def point_to_coords(self, point):
|
2017-05-23 13:17:31 -07:00
|
|
|
new_point = point - self.axes.get_center()
|
|
|
|
x = new_point[0]/self.get_x_unit_size()
|
|
|
|
y = new_point[1]/self.get_y_unit_size()
|
2015-11-02 19:09:55 -08:00
|
|
|
return x, y
|
2015-10-06 15:27:40 -07:00
|
|
|
|
2017-05-23 13:17:31 -07:00
|
|
|
def get_x_unit_size(self):
|
2017-05-09 23:00:30 -07:00
|
|
|
return self.axes.get_width() / (2.0*self.x_radius)
|
|
|
|
|
2017-05-23 13:17:31 -07:00
|
|
|
def get_y_unit_size(self):
|
2017-05-09 23:00:30 -07:00
|
|
|
return self.axes.get_height() / (2.0*self.y_radius)
|
|
|
|
|
2015-10-06 15:27:40 -07:00
|
|
|
def get_coordinate_labels(self, x_vals = None, y_vals = None):
|
2017-08-05 20:47:06 -07:00
|
|
|
coordinate_labels = VGroup()
|
|
|
|
if x_vals == None:
|
|
|
|
x_vals = range(-int(self.x_radius), int(self.x_radius)+1)
|
|
|
|
if y_vals == None:
|
|
|
|
y_vals = range(-int(self.y_radius), int(self.y_radius)+1)
|
2016-04-19 00:20:19 -07:00
|
|
|
for index, vals in enumerate([x_vals, y_vals]):
|
2015-10-06 15:27:40 -07:00
|
|
|
num_pair = [0, 0]
|
|
|
|
for val in vals:
|
2017-03-08 15:18:43 -08:00
|
|
|
if val == 0:
|
|
|
|
continue
|
2015-10-06 15:27:40 -07:00
|
|
|
num_pair[index] = val
|
2017-05-23 13:17:31 -07:00
|
|
|
point = self.coords_to_point(*num_pair)
|
2015-10-28 17:18:50 -07:00
|
|
|
num = TexMobject(str(val))
|
2017-03-08 15:18:43 -08:00
|
|
|
num.add_background_rectangle()
|
2016-04-19 00:20:19 -07:00
|
|
|
num.scale_to_fit_height(
|
|
|
|
self.written_coordinate_height
|
|
|
|
)
|
2017-08-05 20:47:06 -07:00
|
|
|
num.next_to(point, DOWN+LEFT, buff = SMALL_BUFF)
|
|
|
|
coordinate_labels.add(num)
|
|
|
|
self.coordinate_labels = coordinate_labels
|
|
|
|
return coordinate_labels
|
2015-10-06 15:27:40 -07:00
|
|
|
|
2016-07-15 18:16:06 -07:00
|
|
|
def get_axes(self):
|
|
|
|
return self.axes
|
|
|
|
|
|
|
|
def get_axis_labels(self, x_label = "x", y_label = "y"):
|
|
|
|
x_axis, y_axis = self.get_axes().split()
|
2017-03-08 15:18:43 -08:00
|
|
|
quads = [
|
|
|
|
(x_axis, x_label, UP, RIGHT),
|
|
|
|
(y_axis, y_label, RIGHT, UP),
|
|
|
|
]
|
|
|
|
labels = VGroup()
|
|
|
|
for axis, tex, vect, edge in quads:
|
|
|
|
label = TexMobject(tex)
|
|
|
|
label.add_background_rectangle()
|
|
|
|
label.next_to(axis, vect)
|
|
|
|
label.to_edge(edge)
|
|
|
|
labels.add(label)
|
2017-03-14 15:50:16 -07:00
|
|
|
self.axis_labels = labels
|
2017-03-08 15:18:43 -08:00
|
|
|
return labels
|
2016-07-15 18:16:06 -07:00
|
|
|
|
2015-10-06 15:27:40 -07:00
|
|
|
def add_coordinates(self, x_vals = None, y_vals = None):
|
|
|
|
self.add(*self.get_coordinate_labels(x_vals, y_vals))
|
|
|
|
return self
|
2015-06-27 04:49:10 -07:00
|
|
|
|
2015-10-12 19:39:46 -07:00
|
|
|
def get_vector(self, coords, **kwargs):
|
2016-04-19 00:20:19 -07:00
|
|
|
point = coords[0]*RIGHT + coords[1]*UP
|
2015-10-12 19:39:46 -07:00
|
|
|
arrow = Arrow(ORIGIN, coords, **kwargs)
|
|
|
|
return arrow
|
|
|
|
|
2016-07-22 18:45:34 -07:00
|
|
|
def prepare_for_nonlinear_transform(self, num_inserted_anchor_points = 50):
|
|
|
|
for mob in self.family_members_with_points():
|
2016-12-01 15:15:54 -08:00
|
|
|
num_anchors = mob.get_num_anchor_points()
|
|
|
|
if num_inserted_anchor_points > num_anchors:
|
|
|
|
mob.insert_n_anchor_points(num_inserted_anchor_points-num_anchors)
|
|
|
|
mob.make_smooth()
|
2016-07-22 18:45:34 -07:00
|
|
|
return self
|
2015-10-27 21:00:50 -07:00
|
|
|
|
2017-08-02 11:58:33 -07:00
|
|
|
def apply_function(self, function, maintain_smoothness = True):
|
|
|
|
SVGMobject.apply_function(self, function, maintain_smoothness = maintain_smoothness)
|
|
|
|
|
2015-10-27 21:00:50 -07:00
|
|
|
|
2015-10-12 19:39:46 -07:00
|
|
|
|
|
|
|
|
2015-10-20 21:55:46 -07:00
|
|
|
|
2015-06-27 04:49:10 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-06-10 22:00:35 -07:00
|
|
|
|
|
|
|
|