Chelsea Newman
Chelsea Newman
About Me
Previous Intern at SideFX Software. Still learning a lot about Houdini.
Currently employed at Intel Sports working on development for storytelling during live Game support for the NFL, NBA, NBL, and Soccer.
EXPERTISE
Generalist
INDUSTRY
Film/TV
Houdini Skills
Availability
Not Specified
Recent Forum Posts
Converting Python to Vex Jan. 11, 2019, 2:17 p.m.
Thank you so much!
Converting Python to Vex Jan. 8, 2019, 6:25 p.m.
Hello world!
So I have been using Houdini for a while, for work I am (for the first time) attempting to utilize wrangles and Vex. I'm now going on day three of trying to figure it out. I have a friend who knows Python and he helped me with the math and such, it's just now in the wrong language. I need help converting it into Vex.
Here is the python code
def func(N):
s = ''
for i in range(N):
angle = 360 * (i + 1) // N
s += ""
return s
for i in range(15):
print(func(i))
So I have been using Houdini for a while, for work I am (for the first time) attempting to utilize wrangles and Vex. I'm now going on day three of trying to figure it out. I have a friend who knows Python and he helped me with the math and such, it's just now in the wrong language. I need help converting it into Vex.
Here is the python code
def func(N):
s = ''
for i in range(N):
angle = 360 * (i + 1) // N
s += ""
return s
for i in range(15):
print(func(i))