Yunus Balcioglu

animatrix_

About Me

Senior FX Technical Director @ Industrial Light & Magic | Feature film credits include The Lord of the Rings: The Rings of Power, Marvel's Eternals, Star Wars: The Rise of Skywalker, X-Men: Dark Phoenix, X-Men: Apocalypse, Aquaman, Alien: Covenant, Pirates of the Caribbean, Justice League and many m...  more
専門知識
Technical Director
INDUSTRY
Film/TV

Connect

LOCATION
Singapore, Singapore
ウェブサイト

Houdini Skills

ADVANCED
Procedural Modeling  | Digital Assets  | Mantra  | Pyro FX  | Fluids  | Destruction FX  | VEX  | Python
INTERMEDIATE
Realtime FX

Availability

Not Specified

My Tutorials

obj-image Advanced
Pragmatic VEX: Volume 1
obj-image Advanced
Pragmatic VEX: Volume 1

My Talks

obj-image HUG
Retiming Ocean Spectra & The Pragmatic Approach to Solving Technical Problems in VFX
obj-image Houdini HIVE
Face Peeling Using KineFX

Recent Forum Posts

Deleting first and last point over for each primitive 2024年4月18日14:01

Hi,

Here is one way:

if ( neighbourcount ( 0, @ptnum ) == 1 )
    i@group_endpts = 1;

Volume or VDB for image processing with OpenCL? 2024年4月13日23:48

For images you don't need sparse volumes so regular dense volumes are better suited.

why Some point number cannot be removed from the array 2024年4月12日11:24

Hi,

You shouldn't modify the array you are looping over when using foreach loop. You don't have to loop over the elements like that to remove values. Just do like this:

removevalue ( npts, 6 );
removevalue ( npts, 1 );

Or loop over the elements to remove:

int elements [ ] = { 6, 1 };
foreach ( int element; elements )
    removevalue ( npts, element );