Skip to content

Commit

Permalink
Reproduce #15
Browse files Browse the repository at this point in the history
  • Loading branch information
utensil committed Feb 27, 2019
1 parent a962ddc commit dfe47b3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions doc/python/Dop.py
Expand Up @@ -15,8 +15,11 @@
dd = v | o3d.grad
lap = o3d.grad * o3d.grad
print(r'\bm{X} =', X)
print(r'\bm{X} \cdot \bm{X} =', X | X)
print(r'\bm{v} =', v)
print(r'\bm{v} \cdot \bm{v} =', v | v)
print(r'\bm{A} =', A)
print(r'\bm{A} \cdot \bm{A} =', A | A)
print(r'%\bm{v}\cdot\nabla =', dd)
print(r'%\nabla^{2} =', lap)
print(r'%\bm{v}\cdot\nabla f =', dd * f)
Expand Down

0 comments on commit dfe47b3

Please sign in to comment.