Skip to content

Commit

Permalink
removed align environment from equations
Browse files Browse the repository at this point in the history
  • Loading branch information
Hart, Kenneth Arthur committed Jan 20, 2019
1 parent 7448cd1 commit d56daeb
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions aabbtree.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,10 @@ def perimeter(self):
.. math::
\begin{align}
p_1 &= 0 &\\
p_2 &= 2 (l_1 + l_2) &\\
p_3 &= 2 (l_1 l_2 + l_2 l_3 + l_1 l_3) &\\
p_n &= 2 \sum_{i=1}^n \prod_{j=1\neq i}^n l_j &
\end{align}
p_1 &= 0 \\
p_2 &= 2 (l_1 + l_2) \\
p_3 &= 2 (l_1 l_2 + l_2 l_3 + l_1 l_3) \\
p_n &= 2 \sum_{i=1}^n \prod_{j=1\neq i}^n l_j
"""
if len(self) == 1:
Expand Down

0 comments on commit d56daeb

Please sign in to comment.