pydy / pydy-tutorial-human-standing

PyDy tutorial materials for MASB 2014, PYCON 2014, and SciPy 2014/2015.
http://pydy.org
160 stars 70 forks source link

n05_kinetics misses the import #99

Closed soupault closed 8 years ago

soupault commented 8 years ago

from sympy import symbols should be casted in the Setup section.

soupault commented 8 years ago

Also, from solution.inertia import * is missing.

oliverlee commented 8 years ago

The first code box has the solution.inertia import:

from __future__ import print_function, division
from solution.inertia import *

The import of solution.inertia imports solution.kinematics which then import symbols.

Can you give steps to reproduce your problem?

soupault commented 8 years ago

Yes, sorry, you are right. Probably, I've went throught the cells too fast. Anyways, direct import of symbols could be good for the transparency.