Coder Social home page Coder Social logo

Comments (3)

uwezi avatar uwezi commented on September 28, 2024 1

The code from the example scene works fine in the current version 0.18.1 - this can also be checked with the interactive rendering from within the documentation.

image

from manim.

dalopezt avatar dalopezt commented on September 28, 2024

Quick Fix

Using directly the root_vertex param instead of using the layout_config param works just fine.
I suggest revisit the examples in the code and check if some of them are deprecated.

from manim import *
class TreeLayout(Scene):
    def construct(self):
        graph = Graph(
            [1, 2, 3, 4, 5, 6, 7],
            [(1, 2), (1, 3), (2, 4), (2, 5), (3, 6), (3, 7)],
            layout="tree",
            root_vertex=1,
            labels=True
        )
        self.add(graph)

from manim.

Nikhil-42 avatar Nikhil-42 commented on September 28, 2024

@dalopezt Which version of Manim are you using? Make sure it is the same version as the documentation you are reading. Graph layouts were redone in v0.18.1 so if your version of Manim is older you should look at the older documentation.

from manim.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.