Gerardo Castellanos

Gerardo Castellanos

About Me

EXPERTISE
Generalist
INDUSTRY
Film/TV

Connect

LOCATION
Spain

Houdini Skills

Availability

Not Specified

Recent Forum Posts

Monster Art - Monster University Character April 1, 2024, 9:52 a.m.



A showcase of the use of my GroomToolKit and the GRM groomNoise, a hair noiser tool for Houdini.
Original character from "Monster University" by Pixar/Disney©
Modeling on ZBrush, Groom, Shading, Lighting and Rendering on Houdini 20 and Karma CPU.

I tried to submit it on the Galley, but it says page no found when I click on "submit".

VEX: create attribute from groups Aug. 8, 2023, 3:13 p.m.

Thanks!

VEX: create attribute from groups Aug. 8, 2023, 1:31 p.m.

Hello everybody

I want to create as many attributes (float) as groups I have, and that have the same name of the group, procedurally.

something like this:

string groups[] = detailintrinsic(0, 'primitivegroups');
foreach (string g; groups) {
if (inprimgroup(0,g,@primnum)==1) {
f@`g` = 1.0;
}
}

but it does not work.

Thanks in advance