Skip to content

Latest commit

 

History

History
53 lines (33 loc) · 1.17 KB

README.md

File metadata and controls

53 lines (33 loc) · 1.17 KB

Language

Englsh

한국어

ipydoodle

image

ipydoodle is 2D visualization library for student running on Jupyter environment.

Goals

ipydoodle is made for students who are not familiar with coding. So our goal is helping them learn coding easily and joyfully.

Immediate Feedback

In order for students to be interested, even a very simple code need to be responsive when they are executed, like "Hello, World" In ipydoodle, "Hello, World" is:

image

Object Based Render

When you define an object ipydoodle renders the object similar to the real world. This intuitive structure helps students understand ipydoodle easily.

For example, the following code slowly moves the circle in the center of the screen to the right:

from ipydoodle import *
import time
World()
ball = Circle()
for _ in range(100):
    ball.x += 1
    time.sleep(0.05)

Documentation

Documentation is here.

Installation

Just use pip.

pip install ipydoodle

Examples

Free Fall Simulation

image