z-agent / papers-context /agent_workspace /manim_docs /reference /manim.mobject.table.MathTable.md
ProgramerSalar's picture
fix: track binary files with Git LFS
dc00adb
|
Raw
History Blame Contribute Delete
3.75 kB

A newer version of the Gradio SDK is available: 6.20.0

Upgrade

MathTable

Qualified name: manim.mobject.table.MathTable

class MathTable(table, element_to_mobject=<class 'manim.mobject.text.tex_mobject.MathTex'>, **kwargs)

Bases: Table

A specialized Table mobject for use with LaTeX.

Examples

Special case of Table with element_to_mobject set to MathTex. Every entry in table is set in a Latex align environment.

  • Parameters:
    • table (Iterable *[*Iterable *[*float | str ] ]) – A 2d array or list of lists. Content of the table have to be valid input for MathTex.
    • element_to_mobject (Callable [ *[*float | str ] , VMobject ]) – The Mobject class applied to the table entries. Set as MathTex.
    • kwargs – Additional arguments to be passed to Table.

Methods

Attributes

animate Used to animate the application of any method of self.
animation_overrides
color
depth The depth of the mobject.
fill_color If there are multiple colors (for gradient) this returns the first one
height The height of the mobject.
n_points_per_curve
sheen_factor
stroke_color
width The width of the mobject.

_original__init__(table, element_to_mobject=<class 'manim.mobject.text.tex_mobject.MathTex'>, **kwargs)

Special case of Table with element_to_mobject set to MathTex. Every entry in table is set in a Latex align environment.

  • Parameters:
    • table (Iterable *[*Iterable *[*float | str ] ]) – A 2d array or list of lists. Content of the table have to be valid input for MathTex.
    • element_to_mobject (Callable [ *[*float | str ] , VMobject ]) – The Mobject class applied to the table entries. Set as MathTex.
    • kwargs – Additional arguments to be passed to Table.