Skip to content

Commit

Permalink
Fix indent for code block?
Browse files Browse the repository at this point in the history
  • Loading branch information
heavyimage committed Jul 10, 2016
1 parent a5554c6 commit 2eb8e5b
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,18 @@ An integration package for the Foundry's [Nuke](https://www.thefoundry.co.uk/pro
Startup vim, and fill the buffer with a few python snippits
```python
nuke.createNode("Blur")
10+50
import math
for i in range(360):
x = int(math.cos(math.radians(i))) * 500
y = int(math.sin(math.radians(i))) * 500
d = nuke.createNode("Dot")
d.setXYpos(x, y)
```
```python
nuke.createNode("Blur")
10+50
import math
for i in range(360):
x = int(math.cos(math.radians(i))) * 500
y = int(math.sin(math.radians(i))) * 500
d = nuke.createNode("Dot")
d.setXYpos(x, y)
```
Then, consider the chart below:
Expand Down

0 comments on commit 2eb8e5b

Please sign in to comment.